Skip to content

Commit ad702b5

Browse files
authored
Merge pull request #66 from Shopify/centralize_ruby_version
Centralize Ruby Version to `.ruby-version`
2 parents 2d179a6 + 8513db1 commit ad702b5

File tree

5 files changed

+21
-14
lines changed

5 files changed

+21
-14
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
with:
1818
ruby-version: ${{ matrix.ruby }}
1919
bundler-cache: true
20+
bundler: latest
2021
- name: Ruby Tests
2122
run: bundle exec rake test
2223
- name: RuboCop

.rubocop.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ inherit_gem:
22
rubocop-shopify: rubocop.yml
33

44
AllCops:
5-
TargetRubyVersion: 2.7
65
Exclude:
76
- 'vendor/**/*'

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.3.0

Gemfile.lock

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,35 @@ GEM
77
remote: https://rubygems.org/
88
specs:
99
ast (2.4.2)
10-
json (2.6.3)
10+
json (2.7.1)
11+
language_server-protocol (3.17.0.3)
1112
minitest (5.17.0)
12-
parallel (1.22.1)
13-
parser (3.2.0.0)
13+
parallel (1.24.0)
14+
parser (3.3.0.5)
1415
ast (~> 2.4.1)
16+
racc
17+
racc (1.7.3)
1518
rainbow (3.1.1)
1619
rake (13.0.6)
17-
regexp_parser (2.6.1)
18-
rexml (3.2.5)
19-
rubocop (1.43.0)
20+
regexp_parser (2.9.0)
21+
rexml (3.2.6)
22+
rubocop (1.62.1)
2023
json (~> 2.3)
24+
language_server-protocol (>= 3.17.0)
2125
parallel (~> 1.10)
22-
parser (>= 3.2.0.0)
26+
parser (>= 3.3.0.2)
2327
rainbow (>= 2.2.2, < 4.0)
2428
regexp_parser (>= 1.8, < 3.0)
2529
rexml (>= 3.2.5, < 4.0)
26-
rubocop-ast (>= 1.24.1, < 2.0)
30+
rubocop-ast (>= 1.31.1, < 2.0)
2731
ruby-progressbar (~> 1.7)
2832
unicode-display_width (>= 2.4.0, < 3.0)
29-
rubocop-ast (1.24.1)
30-
parser (>= 3.1.1.0)
33+
rubocop-ast (1.31.2)
34+
parser (>= 3.3.0.4)
3135
rubocop-shopify (2.11.1)
3236
rubocop (~> 1.42)
33-
ruby-progressbar (1.11.0)
34-
unicode-display_width (2.4.2)
37+
ruby-progressbar (1.13.0)
38+
unicode-display_width (2.5.0)
3539

3640
PLATFORMS
3741
ruby
@@ -44,4 +48,4 @@ DEPENDENCIES
4448
rubocop-shopify
4549

4650
BUNDLED WITH
47-
2.4.22
51+
2.5.7

bootboot.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ Gem::Specification.new do |spec|
2929
spec.extra_rdoc_files = ["LICENSE.txt", "README.md"]
3030
spec.require_paths = ["lib"]
3131

32+
spec.required_ruby_version = ">= 2.7.0"
33+
3234
spec.add_development_dependency("minitest", "~> 5.0")
3335
spec.add_development_dependency("rake", "~> 10.0")
3436
end

0 commit comments

Comments
 (0)