-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (32 loc) · 734 Bytes
/
Gemfile
File metadata and controls
36 lines (32 loc) · 734 Bytes
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
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
gem "better_html"
gem "debug"
gem "puma"
if !@rails_gem_requirement
gem "rails", ">= 7.1"
ruby ">= 3.2.0"
else
# causes Dependabot to ignore the next line and update the previous gem "rails"
rails = "rails"
gem rails, @rails_gem_requirement
end
gem "rubocop"
gem "rubocop-shopify"
gem "sprockets-rails"
gem "sqlite3"
gem "yard"
group :test do
gem "capybara"
gem "capybara-lockstep"
if !@minitest_gem_requirement
gem "minitest"
else
# causes Dependabot to ignore the next line and update the previous gem "minitest"
minitest = "minitest"
gem minitest, @minitest_gem_requirement
end
gem "mocha"
gem "selenium-webdriver"
end