Skip to content

Commit 0e5484f

Browse files
committed
CI: Fix rails version specification in gemfiles to run with the specified minor version
1 parent 960ab2b commit 0e5484f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

gemfiles/Gemfile.rails-6.1.x

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
22

33
gemspec :path => '..'
44

5-
gem 'activesupport', '~> 6.1'
5+
gem 'activesupport', '~> 6.1.0'
66
gem 'mocha', '~> 2.1.0'
77
gem 'test_declarative', '0.0.6'
88
gem 'rake'

gemfiles/Gemfile.rails-7.0.x

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
22

33
gemspec :path => '..'
44

5-
gem 'activesupport', '~> 7.0'
5+
gem 'activesupport', '~> 7.0.0'
66
gem 'mocha', '~> 2.1.0'
77
gem 'test_declarative', '0.0.6'
88
gem 'rake'

gemfiles/Gemfile.rails-7.1.x

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
22

33
gemspec :path => '..'
44

5-
gem 'activesupport', '~> 7.1'
5+
gem 'activesupport', '~> 7.1.0'
66
gem 'mocha', '~> 2'
77
gem 'test_declarative', '0.0.6'
88
gem 'rake'

gemfiles/Gemfile.rails-7.2.x

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
22

33
gemspec :path => '..'
44

5-
gem 'activesupport', '~> 7.2'
5+
gem 'activesupport', '~> 7.2.0'
66
gem 'mocha', '~> 2'
77
gem 'test_declarative', '0.0.6'
88
gem 'rake'

gemfiles/Gemfile.rails-8.0.x

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
22

33
gemspec :path => '..'
44

5-
gem 'activesupport', '~> 8.0'
5+
gem 'activesupport', '~> 8.0.0'
66
gem 'mocha', '~> 2'
77
gem 'test_declarative', '0.0.6'
88
gem 'rake'

0 commit comments

Comments
 (0)