-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
90 lines (82 loc) · 2.67 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.2'
gem 'rails', '~> 7.0.4'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bootstrap', '~> 4.6'
gem 'carrierwave-aws'
gem 'devise'
gem 'devise-guests'
gem 'devise_invitable'
gem 'dotenv-rails'
gem 'font-awesome-rails'
gem 'friendly_id'
gem 'irb'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'mina' # deployment script generator -- is this used? should this be used?
gem 'mysql2'
gem 'okcomputer', '~> 1.18'
# Use Puma as the app server
gem 'puma', '< 7'
gem 'rdoc', require: false
gem 'riiif'
gem 'rsolr'
gem 'ruby-oembed'
# Use SCSS for stylesheets
gem 'sassc', '~> 2.1', '< 2.2'
gem 'sassc-rails'
gem 'sidekiq', '~> 6' # TODO: NEEDS UPGRADE
gem 'sitemap_generator'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 4.2.0'
gem 'whenever', require: false
# Gems manually added to control blacklight and spotlight versions
gem 'blacklight', '~> 7.36.1'
gem 'blacklight-gallery', '~> 4.0'
gem 'blacklight-oembed', '~> 1.0'
gem 'blacklight-spotlight', '~> 3.5'
group :development do
gem 'better_errors' # add command line in browser when errors
gem 'binding_of_caller' # deeper stack trace used by better errors
gem 'listen'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen'
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara'
gem 'capybara-screenshot'
gem 'coveralls', require: false
gem 'factory_bot'
gem 'factory_bot_rails', require: false
gem 'faker'
gem 'rails-controller-testing'
gem 'rspec-activemodel-mocks'
gem 'rspec-its'
gem 'rspec_junit_formatter'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'timecop'
gem 'webdrivers'
gem 'webmock'
end
group :development, :test do
gem 'bixby' # style guide enforcement with rubocop
gem 'solr_wrapper'
end
group :development, :integration, :test do
gem 'byebug' # debugging
end