-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
158 lines (135 loc) · 5.63 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# frozen_string_literal: true
ruby '3.3.6'
source 'http://rubygems.org'
gem 'actionview'
gem 'rails', '~> 6.1.7.7'
gem 'rails-i18n', '~> 6.0' # version should match major version of Rails
gem 'sass-rails', '~> 6.0.0'
gem 'sprockets', '~> 4.2.1'
gem 'damerau-levenshtein' # string distance
gem 'mysql2' # Rails 5.2 needs a newer one # , '~> 0.3.11'
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'rails-ujs'
gem 'rufus-scheduler' # scheduler
gem 'active_data' # for *Search classes in Chewy
gem 'chewy' # for ElasticSearch 7.x
gem 'image_processing'
gem 'jquery-slick-rails' # for carousel slider
gem 'property_sets', '>= 3.7.1' # for key/value properties per model; version 3.7.1 supports Ruby 3.0 per https://github.com/zendesk/property_sets/issues/85
gem 'rails-jquery-autocomplete', '>= 1.0.5' # for auto-completion
# gem "mini_magick", ">= 4.9.4" # now (Rails 6.1) required by image_processing
gem 'human_enum_name' # i18n for enums
gem 'marcel', '~> 1'
gem 'omniauth-rails_csrf_protection'
gem 'rack-cors', require: 'rack/cors'
gem 'aws-sdk-s3' # for Active Storage
gem 'diffy'
gem 'simple_form', '~> 5.3.0'
gem 'kt-paperclip', git: 'https://github.com/kreeti/kt-paperclip.git' # for Ruby 3.2 compatibility, until https://github.com/kreeti/kt-paperclip/pull/98 is officially released
# gem 'kt-paperclip', '7.1.1' # , '~>5.2' # for cloud files like author images 6.x requires aws >3.x
# gem 'impressionist' # latest released gem incompatible with Ruby 3.x
gem 'impressionist',
git: 'https://github.com/charlotte-ruby/impressionist',
ref: '46a582ff8cd3496da64f174b30b91f9d97e86643'
gem 'jbuilder', '~> 2.0' # for JSON APIs
gem 'sqlite3' # for dictionary imports
# gem 'rollbar' # error reporting. Airbrake replacement.
gem 'activerecord-session_store'
gem 'jquery-rails'
gem 'jquery-ui-rails', git: 'https://github.com/jquery-ui-rails/jquery-ui-rails' # v 7.0 has not been pushed to RubyGems yet
# gem "jquery-ui-rails", "~> 4.0.4"
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
gem 'client_side_validations'
gem 'execjs'
gem 'htmlentities'
gem 'kaminari'
gem 'mini_racer'
# gem 'kaminari', '1.1.1' # pagination. Kaminari 1.2.1 seems to have a bug - https://github.com/kaminari/kaminari/issues/1033
gem 'nokogiri'
gem 'rmultimarkdown' # new wrapper over Fletcher Penney's MultiMarkDown 6 (MMD 6)
gem 'yt' # for polling YouTube for new videos
gem 'gared', '>= 0.1.2' # https://gitlab.com/abartov/gared # for scraping bibliographic data from Hebrew sources
gem 'hebrew', '>= 0.2.1' # https://github.com/abartov/hebrew
# gem 'goldiloader'
gem 'haml'
# gem 'zoom', '~>0.4.1', :git => 'https://github.com/bricestacey/ruby-zoom.git' # for Z39.50 queries to libraries
gem 'docx' # for pre-processing DOCX files to preserve stanzas
gem 'gepub' # for generating EPUBs
gem 'haml-rails'
gem 'pandoc-ruby' # for converting to DOCX
gem 'paper_trail' # for versioning entities
gem 'project-honeypot2', '>= 0.1.3' # for HTTP:BL service by Project Honeypot
gem 'responders' # for respond_to at controller level (in api_controller)
gem 'rmagick' # for generating cover images for EPUBs
gem 'uglifier'
# gem 'forty_facets' # for faceted search
gem 'better_sjr' # ease debugging of server-side JS responses
# gem 'histogram' # for histograms in date filter
gem 'bootstrap4-datetime-picker-rails' # for date picker in filters
gem 'hebruby' # for Hebrew date handling
gem 'momentjs-rails' # for date picker in filters
gem 'grape', '1.6.0' # 1.6.1 adds a Validators module damisul's patch isn't ready for
gem 'grape-entity', '~> 0.10.1'
# TODO: Replace to standard version of gem after PR will be accepted https://github.com/jagaapple/grape-extra_validators/pull/10
gem 'ahoy_matey' # for recording events
gem 'blazer' # for exploring Ahoy events
gem 'grape-extra_validators', '~> 2.1.0', git: 'https://github.com/damisul/grape-extra_validators'
gem 'grape-swagger', '~> 1.4.2'
gem 'grape-swagger-entity', '~> 0.5.1'
gem 'puma'
gem 'puma_worker_killer' # cycle workers when they bloat
gem 'rack-attack' # control misbehaving clients
gem 'rswag-api'
gem 'rswag-ui'
## these were used for some legacy HtmlDir VIAF lookup stuff. They have a huge RAM footprint (~160MB per process), so commented out until needed again.
# gem 'rdf' #, '~> 2.0.1'
# gem 'linkeddata' # for RDF etc.
# gem 'rdf-vocab' # for SKOS predefined vocab
# gem 'sparql-client'#, '~> 2.0.1'
group :production do
gem 'dalli'
gem 'newrelic_rpm' # performance monitoring
gem 'puma-daemon', require: false
end
group :test do
gem 'faker', '~> 2.19.0'
gem 'rails-controller-testing', '~> 1.0.5'
gem 'simplecov', require: false
gem 'turn', '0.8.2', require: false
end
group :development do
gem 'capistrano', '~> 3.11', require: false
gem 'capistrano3-puma'
gem 'capistrano-rails', '~> 1.4', require: false
gem 'capistrano-rvm'
gem 'derailed_benchmarks'
gem 'listen'
gem 'rvm1-capistrano3', require: false
gem 'web-console'
# gem 'bullet' # for suggestions to add/remove eager loading
gem 'active_record_query_trace'
gem 'bcrypt_pbkdf'
gem 'debug'
gem 'ed25519'
gem 'immigrant'
gem 'ruby-prof' # for profiling
gem 'stackprof'
gem 'haml_lint', '~> 0.57.0', require: false
gem 'pronto', '~> 0.11.2'
gem 'pronto-haml', '~> 0.11.1', require: false
gem 'pronto-rubocop', '~> 0.11.5', require: false
gem 'rubocop', '~> 1.61.0', require: false
gem 'rubocop-factory_bot', '~> 2.25.1', require: false
gem 'rubocop-rails', '~> 2.24.1', require: false
gem 'rubocop-rspec', '~> 2.28.0', require: false
end
group :test, :development do
gem 'dotenv', '~> 3.1.2'
gem 'factory_bot_rails', '~> 6.2.0'
gem 'rspec-rails', '~> 5.0.2'
gem 'spring'
gem 'spring-commands-rspec'
end
gem 'sidekiq', '~> 7.2'