forked from winescout/scholarworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
76 lines (70 loc) · 1.84 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
76
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'awesome_print'
gem 'aws-sdk-s3'
gem 'blacklight_advanced_search'
gem 'blacklight_oai_provider'
gem 'blacklight_range_limit'
gem 'bootstrap-sass', '~> 3.0'
gem 'bulkrax'
gem 'chronic'
gem 'coffee-rails', '~> 4.2'
gem 'colorize'
gem 'config'
gem 'crawler_detect'
gem 'devise', '>= 4.4.0'
gem 'devise-guests', '~> 0.6'
gem 'handle-system-rest'
gem 'hydra-derivatives', '~>3.6'
gem 'hydra-role-management'
gem 'hyrax', '3.6'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'maxmind-geoip2'
gem 'okcomputer', '~> 1.18', '>= 1.18.4'
gem 'omniauth-shibboleth'
gem 'pg', '~> 0.18'
gem 'rails', '~> 5.2'
gem 'redis', '~> 4.0'
gem 'riiif', '~> 2.1'
gem 'rsolr', '>= 1.0', '< 3'
gem 'rubocop'
gem 'ruby-vips', '~> 2.0'
gem 'rubyzip'
gem 'sass-rails', '~> 5.0'
gem 'sidekiq'
gem 'solargraph'
gem 'table_print'
gem 'turbolinks', '~> 5'
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'uglifier', '>= 1.3.0'
gem 'willow_sword', github: 'csuscholarworks/willow_sword', tag: 'v1.0'
gem 'yaml_extend'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'capybara', '~> 2.15'
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'factory_bot_rails'
gem 'fcrepo_wrapper'
gem 'puma', '~> 3.11'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'solr_wrapper', '>= 0.3'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'database_cleaner'
gem 'rspec-sidekiq'
end
group :production do
gem 'passenger', '>= 5.0.25', require: 'phusion_passenger/rack_handler'
end