-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
50 lines (37 loc) · 1.14 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in nla-blacklight_common.gemspec.
gemspec
gem "mysql2"
gem "sprockets-rails"
gem "puma", "~> 6.4"
gem "jwt", "~> 2.9"
gem "strong_migrations", "~> 2.0"
gem "fuubar"
group :development, :test do
# All runtime config comes from the UNIX environment
# but we use dotenv to store that in files for development and testing
gem "dotenv"
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "standard", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
gem "rubocop-rspec_rails", require: false
gem "rubocop-performance", require: false
gem "rubocop-capybara", require: false
gem "rubocop-factory_bot", require: false
gem "rspec-rails", "~> 7.0"
gem "shoulda-matchers"
gem "factory_bot_rails"
gem "faker"
gem "rails-ujs"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
gem "rails-controller-testing"
gem "webmock"
gem "simplecov"
gem "simplecov-json"
end