Skip to content

Commit ed09c6d

Browse files
committed
1 parent 416c0d7 commit ed09c6d

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

.rubocop_gradual.lock

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,15 @@
1616
[55, 21, 1, "Lint/Syntax: unexpected token tCOLON\n(Using Ruby 2.2 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)", 177567],
1717
[56, 22, 4, "Lint/Syntax: unexpected token tCONSTANT\n(Using Ruby 2.2 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)", 2089414472],
1818
[57, 22, 4, "Lint/Syntax: unexpected token tCONSTANT\n(Using Ruby 2.2 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)", 2089414472]
19+
],
20+
"spec/version_gem/error_spec.rb:3824255504": [
21+
[5, 29, 5, "RSpec/MissingExpectationTargetMethod: Use `.to`, `.not_to` or `.to_not` to set an expectation.", 179970942]
22+
],
23+
"spec/version_gem/ruby_spec.rb:4114481917": [
24+
[10, 29, 5, "RSpec/MissingExpectationTargetMethod: Use `.to`, `.not_to` or `.to_not` to set an expectation.", 179970942]
25+
],
26+
"spec/version_gem_spec.rb:482289161": [
27+
[5, 29, 5, "RSpec/MissingExpectationTargetMethod: Use `.to`, `.not_to` or `.to_not` to set an expectation.", 179970942],
28+
[9, 38, 5, "RSpec/MissingExpectationTargetMethod: Use `.to`, `.not_to` or `.to_not` to set an expectation.", 179970942]
1929
]
2030
}

Appraisals

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
# frozen_string_literal: true
22

33
appraise "ruby-2-2" do
4-
gem "mutex_m", "~> 0.2"
5-
gem "stringio", "~> 3.0"
6-
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
4+
gem "mutex_m", "~> 0.1.2"
5+
gem "stringio", "~> 0.0.2"
6+
# For Ruby 2.2 we have to use appraisal v2.2 as it is the last to support Ruby v2.2
7+
# but it doesn't have the remove_gem feature yet.
8+
# remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
79
end
810

911
appraise "ruby-2-3" do
10-
gem "mutex_m", "~> 0.2"
11-
gem "stringio", "~> 3.0"
12+
gem "mutex_m", "~> 0.1.2"
13+
gem "stringio", "~> 0.0.2"
1214
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
1315
end
1416

1517
appraise "ruby-2-4" do
16-
gem "mutex_m", "~> 0.2"
17-
gem "stringio", "~> 3.0"
18+
gem "mutex_m", "~> 0.1.2"
19+
gem "stringio", "~> 0.0.2"
1820
remove_gem "appraisal" # only present because it must be in the gemfile because we target a git branch
1921
end
2022

0 commit comments

Comments
 (0)