Skip to content

Commit e223c99

Browse files
committed
Fix tests on ruby < 2.1.0 with rails 42
1 parent 40f8cc7 commit e223c99

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Gemfile.rails42

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,9 @@ source "https://rubygems.org"
33
gemspec
44

55
gem 'rails', '~> 4.2.5'
6-
gem 'mime-types', '~> 2.99.3'
6+
gem 'mime-types', '~> 2.99.3'
7+
8+
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.1.0')
9+
gem 'nokogiri', '~> 1.6.8'
10+
gem 'rdoc', '~> 4.2.2'
11+
end

0 commit comments

Comments
 (0)