-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
64 lines (56 loc) · 1.51 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'arclight', '0.4.0'
gem 'blacklight-hierarchy', '4.0.0'
gem 'blacklight-locale_picker'
gem 'blacklight_dynamic_sitemap', '0.2.0'
gem 'blacklight_range_limit', '~> 7.9'
gem 'bootstrap', '~> 4.0'
gem 'coffee-rails', '~> 4.2'
gem 'devise'
gem 'devise-guests', '~> 0.6'
gem 'font-awesome-sass', '~> 5.12.0'
gem 'jquery-rails'
gem 'pg'
gem 'puma'
gem 'rails', '~> 5.2.3'
gem 'rails_autolink'
gem 'resque', '~> 2.0'
gem 'resque-pool'
gem 'rsolr', '>= 2.4', '< 3'
gem 'sass-rails', '~> 5.0'
gem 'turbolinks', '~> 5'
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'uglifier', '>= 1.3.0'
gem 'yabeda-rails', '~> 0.8'
gem 'yabeda-puma-plugin', '~> 0.7'
gem 'yabeda-prometheus', '~> 0.8'
gem 'yabeda-http_requests', '~> 0.2'
gem 'config', '~> 3.1'
## gem 'puppeteer-ruby'
gem "rails_semantic_logger", '~> 4.14'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails', '~> 5.0'
gem 'standard'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'rubocop-rake'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'listen', '>= 3.0.5', '< 3.2'
# gem 'spring'
# gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
# RubyMine Docker-Compose Debugging
gem 'debase'
gem 'ruby-debug-ide'
end
group :test do
gem 'axe-core-rspec' # accessibility testing
gem 'capybara'
gem 'selenium-webdriver'
end