Skip to content

Commit e5574be

Browse files
committed
change gem requirements so tests pass for Ruby 3.0 and 3.1 versions
1 parent a590c16 commit e5574be

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

Gemfile.lock

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@ PATH
99
GEM
1010
remote: https://rubygems.org/
1111
specs:
12-
actionview (8.0.1)
13-
activesupport (= 8.0.1)
12+
actionview (7.1.5.1)
13+
activesupport (= 7.1.5.1)
1414
builder (~> 3.1)
1515
erubi (~> 1.11)
1616
rails-dom-testing (~> 2.2)
1717
rails-html-sanitizer (~> 1.6)
18-
activesupport (8.0.1)
18+
activesupport (7.1.5.1)
1919
base64
2020
benchmark (>= 0.3)
2121
bigdecimal
22-
concurrent-ruby (~> 1.0, >= 1.3.1)
22+
concurrent-ruby (~> 1.0, >= 1.0.2)
2323
connection_pool (>= 2.2.5)
2424
drb
2525
i18n (>= 1.6, < 2)
2626
logger (>= 1.4.2)
2727
minitest (>= 5.1)
28+
mutex_m
2829
securerandom (>= 0.3)
29-
tzinfo (~> 2.0, >= 2.0.5)
30-
uri (>= 0.13.1)
30+
tzinfo (~> 2.0)
3131
ast (2.4.2)
3232
base64 (0.2.0)
3333
benchmark (0.4.0)
@@ -49,6 +49,7 @@ GEM
4949
nokogiri (>= 1.12.0)
5050
mini_portile2 (2.8.8)
5151
minitest (5.25.4)
52+
mutex_m (0.3.0)
5253
nokogiri (1.18.3)
5354
mini_portile2 (~> 2.8.2)
5455
racc (~> 1.4)
@@ -98,13 +99,12 @@ GEM
9899
rubocop (>= 1.72.1, < 2.0)
99100
rubocop-ast (>= 1.38.0, < 2.0)
100101
ruby-progressbar (1.13.0)
101-
securerandom (0.4.1)
102+
securerandom (0.3.2)
102103
tzinfo (2.0.6)
103104
concurrent-ruby (~> 1.0)
104105
unicode-display_width (3.1.4)
105106
unicode-emoji (~> 4.0, >= 4.0.4)
106107
unicode-emoji (4.0.4)
107-
uri (1.0.2)
108108

109109
PLATFORMS
110110
arm64-darwin-21
@@ -114,10 +114,11 @@ PLATFORMS
114114
x86_64-linux
115115

116116
DEPENDENCIES
117-
actionview
117+
actionview (~> 7.1.5.1)
118118
minitest
119119
rake
120120
rubocop-github!
121+
securerandom (~> 0.3.2)
121122

122123
BUNDLED WITH
123124
2.4.9

rubocop-github.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ Gem::Specification.new do |s|
2424
s.add_dependency "rubocop-performance", ">= 1.15"
2525
s.add_dependency "rubocop-rails", ">= 2.17"
2626

27-
s.add_development_dependency "actionview"
27+
s.add_development_dependency "actionview", "~> 7.1.5.1"
2828
s.add_development_dependency "minitest"
2929
s.add_development_dependency "rake"
30+
s.add_development_dependency "securerandom", "~> 0.3.2"
3031

3132
s.email = "[email protected]"
3233
s.authors = "GitHub"

0 commit comments

Comments
 (0)