-
Notifications
You must be signed in to change notification settings - Fork 25
/
Gemfile
64 lines (54 loc) · 1.33 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
source 'https://rubygems.org'
File.read('.ruby-version').chomp.split('-')[1] { |f| "ruby '#{f}'"}
gem 'activeresource', '>= 5.1.1'
gem 'ffi', '1.15.5'
gem 'flipper'
gem 'georuby', '~> 2.5.2'
gem 'jquery-rails', '~> 4.4.0'
gem 'loofah', '>= 2.3.1'
gem 'mimemagic', '~> 0.3.7'
gem 'nokogiri', '>= 1.13.9'
gem 'rack', '~> 2.0'
gem 'rails-controller-testing'
gem 'rails', '~> 6.0'
gem 'responders', '~> 3.0'
gem 'rest-client', '~> 2.0.2'
gem 'rgeo', '~> 1.0.0'
gem 'unicorn'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'coffee-rails', '~> 4.2.2'
gem 'execjs', '~> 2.7.0'
gem 'sass-rails', '~> 5.0.7'
gem 'sass', '~> 3.5.5'
gem 'mini_racer'
gem 'uglifier', '~> 4.1.6'
end
group :production, :sit, :uat do
# to compensate for the CMR static tagging functionality
gem 'rails_12factor'
gem 'redis'
gem 'rufus-scheduler'
end
group :development do
gem 'pry-rails'
# better error handling
gem 'better_errors'
gem 'binding_of_caller'
gem 'byebug'
gem 'rubocop'
end
group :test, :development do
gem 'rspec_junit_formatter', '~> 0.3.0'
gem 'rspec-activemodel-mocks', '~> 1.0.3'
gem 'rspec-rails'
end
group :test do
gem 'simplecov', :require => false
gem 'cucumber-rails', :require => false
gem 'vcr'
gem 'webmock'
gem 'capybara'
gem 'rack-test'
end