-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
161 lines (128 loc) · 3.88 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
159
160
161
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.0.0'
gem 'concurrent-ruby', '1.3.4'
gem 'bootsnap', '~> 1.9.3', require: false
gem 'listen', '~> 3.0'
gem 'rack-cors', :require => 'rack/cors'
gem "puma", "~> 5.6"
# Run puma with systemd integration
gem 'sd_notify', '>= 0.1.0'
# Webpacker
gem 'webpacker', '~> 5.x'
gem 'sqlite3', '~> 1.4'
#gem 'mysql2', '~> 0.5.0'
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Terser as compressor for JavaScript assets
gem 'terser'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Profiling stuff
gem 'rack-mini-profiler', '~> 2.3.1'
gem 'flamegraph', '~> 0.9.5'
gem 'stackprof', '~> 0.2.12' # ruby 2.1+ only
gem 'memory_profiler', '~> 0.9.12'
group :development, :test do
gem 'active_record_query_trace'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# RSpec/SolrWrapper
gem 'axe-core-api'
gem 'capybara'
gem 'capybara-selenium'
gem 'capybara-screenshot'
gem 'selenium-webdriver'
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'rspec-rails', '~> 3.5'
gem 'spring'
end
group :development do
gem 'web-console'
gem 'foreman'
gem 'letter_opener'
end
gem 'blacklight', '~> 7.33.0'
# BL Advanced Search / Pinned to EWL bug-fix
# See: https://github.com/projectblacklight/blacklight_advanced_search/issues/127
gem "blacklight_advanced_search", git: "https://github.com/ewlarson/blacklight_advanced_search.git", branch: "bl7-fix-gentle-hands"
gem 'blacklight_range_limit', '~> 7.0.0'
gem 'chosen-rails', '~> 1.10' # jquery multiselect plugin for advanced search
gem 'bootstrap', '~> 4.0'
gem 'popper_js'
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
gem 'geoblacklight', '4.4'
# GBL Admin
gem 'geoblacklight_admin', '~> 0.7.0'
gem 'git', ">= 1.13"
gem "rubyzip", ">= 1.3.0"
gem "awesome_print"
gem "hashdiff"
# GBL Admin dependencies _not_ automatically loading...
gem 'active_storage_validations'
gem 'awesome_print'
# gem 'blacklight_advanced_search'
gem 'dotenv-rails'
gem 'haml'
gem 'inline_svg'
gem 'kithe', '~> 2.0'
gem 'noticed'
gem 'paper_trail'
# Image migration
gem 'geoblacklight_sidecar_images', git: "https://github.com/geoblacklight/geoblacklight_sidecar_images.git", branch: "develop"
gem 'mini_magick', '~> 4.9.4'
gem "image_processing", ">= 1.2"
gem 'statesman', '>= 12.0'
gem 'sidekiq', '~> 6.4'
gem 'sidekiq-failures', '~> 1.0.0'
gem 'down', '~> 5.0'
gem 'addressable', '~> 2.0'
gem 'handlebars_assets', '~> 0.23.0'
gem 'geoblacklight-icons', git: 'https://github.com/geoblacklight/geoblacklight-icons.git', :ref => '84da81140e7ef93e7241b7753c01d7f709216f2b'
gem 'solr_wrapper', git: 'https://github.com/cbeer/solr_wrapper.git', branch: 'master'
gem 'rsolr', '>= 1.0'
gem 'jquery-rails'
# Auth
gem "devise", "~> 4.0"
gem 'devise-bootstrap-views', '~> 1.0'
gem 'devise-guests', '~> 0.6'
gem 'devise_invitable', '~> 2.0.0'
# Reporting
gem 'blazer'
gem 'haml'
gem 'chronic'
# Dotenv
gem 'dotenv-rails'
# Feedback
gem 'pointless_feedback'
gem 'whenever', '~> 1.0.0', require: false
gem 'sitemap_generator', '~> 6.0.2'
# Appsignal
gem 'appsignal'
# Allmaps
gem 'blacklight_allmaps', "~> 0.4.0"
group :test do
gem 'm', '~> 1.5.0'
gem 'minitest'
gem 'minitest-ci', '~> 3.4.0'
gem 'minitest-reporters'
gem 'simplecov', require: false
end
gem 'net-ftp'
gem 'rexml'
gem "stimulus-rails"
gem "vite_rails", "~> 3.0"
# Shrine
gem "aws-sdk-s3", "~> 1.14"