-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
75 lines (70 loc) · 1.68 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
70
71
72
73
74
75
source 'https://rubygems.org'
gem 'rails', '4.2.6'
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'sqlite3'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'chosen-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'sidekiq'
gem 'sinatra', require: false
gem 'awesome_nested_fields'
gem 'owlcarousel-rails'
gem 'sufia', '7.0.0'
gem 'rsolr', '~> 1.0'
gem 'devise'
gem 'devise-guests', '~> 0.3'
gem 'omniauth'
gem 'omniauth-shibboleth'
gem 'pg'
gem 'js-routes'
gem 'simple_form'
gem 'cocoon'
gem 'handle-system'
gem 'paperclip', '~> 5.0.0'
gem 'jquery-ui-rails'
gem 'solr_wrapper', '~> 0.17'
gem 'fcrepo_wrapper'
gem 'openseadragon', '0.2.1'
gem 'sidekiq-failures'
gem 'hashie', '~> 3.4'
gem 'sitemap_generator'
gem 'newrelic_rpm'
gem 'whenever'
gem 'blacklight_oai_provider', git: 'https://github.com/osulibraries/blacklight_oai_provider.git', branch: 'master'
gem 'rack-cors', require: 'rack/cors'
# API
gem 'versionist'
gem 'rabl'
group :development, :test do
gem 'byebug'
gem 'rspec-rails', '~> 3.5'
gem 'rspec-mocks', '~> 3.5'
gem 'factory_girl_rails'
gem 'rubocop', '~> 0.42.0', require: false
gem 'rubocop-rspec', '~> 1.5.1', require: false
gem 'license_finder'
end
group :development do
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'capistrano', '~> 3.5.0'
gem 'capistrano-rails'
gem 'capistrano-rvm'
gem 'capistrano-rails-console', require: false
gem 'highline'
gem 'foreman'
gem 'better_errors'
gem 'binding_of_caller'
end
group :test do
gem 'capybara'
gem 'poltergeist'
gem 'database_cleaner'
gem 'shoulda-matchers', '~> 3.1'
gem 'simplecov', require: false
end