forked from Shopify/maintenance_tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
31 lines (28 loc) · 634 Bytes
/
Copy pathGemfile
File metadata and controls
31 lines (28 loc) · 634 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
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
gem "better_html"
gem "capybara"
gem "debug"
gem "mocha"
gem "puma"
if !@rails_gem_requirement
gem "rails", ">= 7.0"
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 "selenium-webdriver"
gem "sprockets-rails"
if @sqlite3_requirement
# causes Dependabot to ignore the next line and update the next gem "sqlite3"
sqlite3 = "sqlite3"
gem sqlite3, @sqlite3_requirement
else
gem "sqlite3"
end
gem "yard"