-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
58 lines (49 loc) · 1.57 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
source 'https://rubygems.org'
gem 'bundler', '>= 1.2.0'
gem 'rails', '~> 4'
gem 'protected_attributes' # allows attr_accessible in rails 4
gem 'google-analytics-rails'
gem "blacklight", '~> 4.0'
gem 'blacklight_range_limit', '~> 2.3.0'
gem 'eadsax', :git => "https://github.com/sul-dlss/eadsax.git"
gem 'kaminari', '<= 0.14.1' # blacklight also sets semver, so we don't end up w/ 0.0.0
gem 'okcomputer'
# Gems used only for assets:
# previously not required in production environments by default, now possibly required?
group :assets do
gem 'sass-rails', '>= 3.2.3'
gem 'coffee-rails', '>= 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'therubyracer', :platforms => :ruby
end
group :development do
gem 'byebug', '< 11.1.0' # 11.1 requires > ruby 2.4
end
group :development, :test do
gem 'solr_wrapper', '~> 2.0'
gem 'rubocop', '< 0.80' # pinned for ruby 2.3 compatibility
gem 'rubocop-performance', '< 1.6.0' # pinned for ruby 2.3 compatibility
gem 'sqlite3', '~> 1.3.13'
gem 'capybara', '~> 3.15.0' # pinned for ruby 2.3 compatibility
gem 'rspec-rails'
gem 'rspec', '~> 3.0'
gem 'test-unit', :require => false
gem 'simplecov', '0.17.1', :require => false # pinned for ruby 2.3 compat
end
group :staging, :production do
gem 'mysql2', "~> 0.3.10"
end
group :deployment do
gem 'dlss-capistrano'
gem 'capistrano-rails'
gem 'capistrano-passenger', '~> 0.2'
end
gem 'rest-client'
gem 'geocoder'
gem 'jquery-rails'
gem 'bootstrap-sass'
gem 'sprockets', '~> 3'
gem 'sprockets-rails'
gem 'json', '~> 1.8.0'
gem 'honeybadger', '~> 2.0'
gem 'rubyzip', '< 2', require: false