Skip to content

Commit 87f3c22

Browse files
committed
limit minitest version to resolve test failures
1 parent 90dcb70 commit 87f3c22

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

gemfiles/Gemfile.rails-4.1.x

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ source 'https://rubygems.org'
22
gemspec :path => ".."
33

44
gem "actionpack", "~> 4.1.0"
5+
gem "minitest", "< 5.11.0"
56
gem "railties", "~> 4.1.0"
67
gem "nokogiri", "< 1.7.0" if RUBY_VERSION < "2.1"
78
gem "sass", "< 3.5.0" if RUBY_VERSION < "2.0"

gemfiles/Gemfile.rails-4.2.x

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ source 'https://rubygems.org'
22
gemspec :path => ".."
33

44
gem 'actionpack', '~> 4.2.0'
5+
gem 'minitest', '< 5.11.0'
56
gem 'railties', '~> 4.2.0'
67
gem "nokogiri", "< 1.7.0" if RUBY_VERSION < "2.1"
78
gem "sass", "< 3.5.0" if RUBY_VERSION < "2.0"

gemfiles/Gemfile.rails-5.0.x

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33
gemspec path: '..'
44

55
gem 'actionpack', '~> 5.0.0'
6+
gem 'minitest', '< 5.11.0'
67
gem 'railties', '~> 5.0.0'
78
gem 'sprockets', github: 'rails/sprockets', branch: '3.x'

gemfiles/Gemfile.rails-5.0.x.sprockets-4.x

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33
gemspec path: '..'
44

55
gem 'actionpack', '~> 5.0.0'
6+
gem 'minitest', '< 5.11.0'
67
gem 'railties', '~> 5.0.0'
78
gem 'sprockets', github: 'rails/sprockets', branch: 'master'

gemfiles/Gemfile.rails-5.1.x

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33
gemspec path: '..'
44

55
gem 'actionpack', '~> 5.1.0'
6+
gem 'minitest', '< 5.11.0'
67
gem 'railties', '~> 5.1.0'
78
gem 'sprockets', github: 'rails/sprockets', branch: '3.x'

gemfiles/Gemfile.rails-5.1.x.sprockets-4.x

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33
gemspec path: '..'
44

55
gem 'actionpack', '~> 5.1.0'
6+
gem 'minitest', '< 5.11.0'
67
gem 'railties', '~> 5.1.0'
78
gem 'sprockets', github: 'rails/sprockets', branch: 'master'

0 commit comments

Comments
 (0)