-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (40 loc) · 1.09 KB
/
Gemfile
File metadata and controls
46 lines (40 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.3.3'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'activerecord-postgis-adapter', '~> 4.0', '>= 4.0.2'
gem 'devise'
gem 'dragonfly', '~> 1.1.1'
gem 'faker', '~> 1.6', '>= 1.6.6'
gem 'figaro'
gem 'get_your_rep', '~> 1.0', '>= 1.0.4'
gem 'jbuilder'
gem 'multi_json'
gem 'nokogiri', '1.6.8.1'
gem 'pg', '~> 0.19.0'
gem 'puma', '~> 3.0'
gem 'rack-cors', '~> 0.4.0'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'responders'
gem 'rgeo-shapefile', '~> 0.4'
gem 'rqrcode', '~> 0.10.1'
gem 'simple_token_authentication', '~> 1.0'
gem 'vpim', '~> 13.11', '>= 13.11.11'
gem 'yajl-ruby'
group :development, :test do
gem 'database_cleaner'
gem 'pry', '~> 0.10.4'
gem 'pry-byebug'
end
group :development do
gem 'listen', '~> 3.0.5'
gem 'spring', '~> 2.0'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :production do
gem 'rack-cache', require: 'rack/cache'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]