-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
117 lines (73 loc) · 3.17 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2.0'
# we always need sqlite to the boundwiths database
gem 'sqlite3', '1.3.12', platforms: :ruby
group :test, :production do
gem 'mysql2', '~> 0.4.10'
end
gem 'jdbc-sqlite3', '3.8.11.2', platforms: :jruby
gem 'activerecord-jdbcmysql-adapter', '1.3.21', platforms: :jruby
# Use SCSS for stylesheets
gem 'sass-rails', '5.0.6'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '3.0.2'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '4.2.1'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', '0.12.2', platforms: :ruby
gem "blacklight", '6.8.0', :git => 'https://github.com/magibney/blacklight.git', :branch => 'v6.8.0-solr7-qq-feedFormat'
gem "jettywrapper", '2.0.4'
# newer passenger docker image needs tzinfo-data installed for some reason
gem 'tzinfo-data', '1.2017.2'
gem "solr_wrapper", '0.18.1'
gem 'browserify-rails', '4.0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails', '4.3.1'
gem 'jquery-color'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# As of Blacklight v6.3.0, enabling turbolinks corrupts render of search nav.
# See https://github.com/projectblacklight/blacklight/issues/1562
# gem 'turbolinks', '5.0.1'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '2.6.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '0.4.2', group: :doc
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
gem 'unicorn'
group :production do
gem 'passenger', '5.1.6', require: 'phusion_passenger/rack_handler'
end
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: :ruby
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0', platforms: :ruby
gem 'dotenv-rails'
gem 'pry-rails'
end
gem 'rsolr', '1.1.2'
gem 'globalid', '0.3.7'
gem 'devise', '~> 4.6.0'
gem 'devise-guests', '0.5.0'
gem 'blacklight_range_limit', '6.0.0'
gem 'traject', '2.3.3'
gem 'nokogiri', '~> 1.10.0'
gem 'blacklight-marc', '6.2.0'
gem 'blacklight_advanced_search', '6.3.1'
gem 'font-awesome-rails'
# TODO: switch back to official gem when PR #36 is accepted and makes it into a release
gem 'bento_search', :git => 'https://github.com/magibney/bento_search', :branch => 'search_controller_engine_params' #'1.7'
# TODO: switch back to official gem when PR #21 is accepted and makes it into a release
gem 'summon', :git => 'https://github.com/magibney/summon.rb', :branch => 'sign-empty-param-values'
gem 'blacklight_solrplugins', :git => 'https://github.com/upenn-libraries/blacklight_solrplugins.git'
gem 'blacklight_alma', :git => 'https://github.com/upenn-libraries/blacklight_alma.git'
gem 'blacklight-ris', :git => 'https://github.com/upenn-libraries/blacklight-ris.git'
gem 'oga'
gem 'httparty'