forked from codeforamerica/inspector-gadget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
69 lines (51 loc) · 1.1 KB
/
Gemfile
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
source 'https://rubygems.org'
ruby '2.3.0'
gem 'rails', '4.2.7'
gem 'newrelic_rpm'
gem 'bugsnag'
gem 'puma'
gem 'pg'
gem 'activerecord-postgis-adapter'
gem 'sass-rails', '~> 5.0'
gem 'foundation-rails'
gem 'haml-rails'
gem 'uglifier', '>= 1.3.0'
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'jquery-ui-sass-rails'
gem 'lodash-rails'
gem 'compass-rails' # chosen-rails 1.5.1 seems to have this as an undeclared dependency
gem 'chosen-rails', '1.5.1'
gem 'groupdate'
gem 'chartkick'
gem 'business_time'
gem 'holidays'
gem 'phony_rails'
gem 'rubyzip'
gem 'geocoder'
gem 'rgeo-geojson'
gem 'rgeo-shapefile'
gem 'devise'
gem 'activeadmin', git: 'https://github.com/activeadmin/activeadmin'
gem 'jwt'
group :production do
gem 'rails_12factor'
end
group :development, :test do
gem 'byebug'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
end
group :test do
gem 'rspec'
gem 'rspec-rails'
gem 'database_cleaner'
gem 'capybara'
gem 'capybara-webkit'
gem 'factory_girl_rails'
gem 'faker'
gem 'timecop'
gem 'codeclimate-test-reporter', require: false
end