Skip to content

Commit bc73307

Browse files
Merge pull request #33 from psu-libraries/1127-ruby-upgrade
1127 - ruby upgrade
2 parents 6811de0 + 5ae0534 commit bc73307

File tree

5 files changed

+41
-39
lines changed

5 files changed

+41
-39
lines changed

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RSpec/ExampleWording:
135135
IgnoredWords:
136136
- only
137137

138-
RSpec/FilePath:
138+
RSpec/SpecFilePathFormat:
139139
Enabled: false
140140

141141
RSpec/InstanceVariable:

.rubocop_todo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ RSpec/ContextWording:
7878

7979
# Offense count: 3
8080
# Configuration parameters: CustomTransform, IgnoreMethods.
81-
RSpec/FilePath:
81+
RSpec/SpecFilePathFormat:
8282
Exclude:
8383
- 'spec/lib/etda_utilities_access_level_spec.rb'
8484
- 'spec/lib/etda_utilities_etda_file_paths_spec.rb'

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.3
1+
3.4.1

Gemfile.lock

Lines changed: 37 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -7,50 +7,52 @@ GEM
77
remote: https://rubygems.org/
88
specs:
99
ast (2.4.2)
10-
byebug (11.1.1)
11-
diff-lcs (1.3)
12-
json (2.6.3)
13-
parallel (1.22.1)
14-
parser (3.2.1.1)
10+
byebug (11.1.3)
11+
diff-lcs (1.6.0)
12+
json (2.10.1)
13+
language_server-protocol (3.17.0.4)
14+
lint_roller (1.1.0)
15+
parallel (1.26.3)
16+
parser (3.3.7.1)
1517
ast (~> 2.4.1)
18+
racc
19+
racc (1.8.1)
1620
rainbow (3.1.1)
17-
rake (13.0.1)
18-
regexp_parser (2.7.0)
19-
rexml (3.2.8)
20-
strscan (>= 3.0.9)
21-
rspec (3.7.0)
22-
rspec-core (~> 3.7.0)
23-
rspec-expectations (~> 3.7.0)
24-
rspec-mocks (~> 3.7.0)
25-
rspec-core (3.7.1)
26-
rspec-support (~> 3.7.0)
27-
rspec-expectations (3.7.0)
21+
rake (13.2.1)
22+
regexp_parser (2.10.0)
23+
rspec (3.13.0)
24+
rspec-core (~> 3.13.0)
25+
rspec-expectations (~> 3.13.0)
26+
rspec-mocks (~> 3.13.0)
27+
rspec-core (3.13.3)
28+
rspec-support (~> 3.13.0)
29+
rspec-expectations (3.13.3)
2830
diff-lcs (>= 1.2.0, < 2.0)
29-
rspec-support (~> 3.7.0)
30-
rspec-mocks (3.7.0)
31+
rspec-support (~> 3.13.0)
32+
rspec-mocks (3.13.2)
3133
diff-lcs (>= 1.2.0, < 2.0)
32-
rspec-support (~> 3.7.0)
33-
rspec-support (3.7.1)
34-
rubocop (1.48.1)
34+
rspec-support (~> 3.13.0)
35+
rspec-support (3.13.2)
36+
rubocop (1.73.2)
3537
json (~> 2.3)
38+
language_server-protocol (~> 3.17.0.2)
39+
lint_roller (~> 1.1.0)
3640
parallel (~> 1.10)
37-
parser (>= 3.2.0.0)
41+
parser (>= 3.3.0.2)
3842
rainbow (>= 2.2.2, < 4.0)
39-
regexp_parser (>= 1.8, < 3.0)
40-
rexml (>= 3.2.5, < 4.0)
41-
rubocop-ast (>= 1.26.0, < 2.0)
43+
regexp_parser (>= 2.9.3, < 3.0)
44+
rubocop-ast (>= 1.38.0, < 2.0)
4245
ruby-progressbar (~> 1.7)
43-
unicode-display_width (>= 2.4.0, < 3.0)
44-
rubocop-ast (1.27.0)
45-
parser (>= 3.2.1.0)
46-
rubocop-capybara (2.17.1)
47-
rubocop (~> 1.41)
48-
rubocop-rspec (2.19.0)
49-
rubocop (~> 1.33)
50-
rubocop-capybara (~> 2.17)
46+
unicode-display_width (>= 2.4.0, < 4.0)
47+
rubocop-ast (1.38.1)
48+
parser (>= 3.3.1.0)
49+
rubocop-rspec (3.5.0)
50+
lint_roller (~> 1.1)
51+
rubocop (~> 1.72, >= 1.72.1)
5152
ruby-progressbar (1.13.0)
52-
strscan (3.1.0)
53-
unicode-display_width (2.4.2)
53+
unicode-display_width (3.1.4)
54+
unicode-emoji (~> 4.0, >= 4.0.4)
55+
unicode-emoji (4.0.4)
5456

5557
PLATFORMS
5658
ruby

spec/etda_utilities_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
RSpec.describe EtdaUtilities do
44
it "has a version number" do
5-
expect(EtdaUtilities::VERSION).not_to be nil
5+
expect(EtdaUtilities::VERSION).not_to be_nil
66
end
77
end

0 commit comments

Comments
 (0)