summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2019-11-24 01:29:32 +0100
committerKornelius Kalnbach <murphy@rubychan.de>2019-11-24 01:29:32 +0100
commitc7e3b31f405b3669d823bda2f0f0ec3df64fdf2d (patch)
tree5ce13ad45a912d52514015f65f10b59dd7f6ba2b /Gemfile
parent62f69934f2508a25df988157925667d5efd8549e (diff)
parent9907f88568691916e4a869bc44126de8040a274d (diff)
downloadcoderay-c7e3b31f405b3669d823bda2f0f0ec3df64fdf2d.tar.gz
Merge branch 'master' into fix-javascript-regexp
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 530c0e8..c19ac08 100644
--- a/Gemfile
+++ b/Gemfile
@@ -14,5 +14,5 @@ group :development do
gem 'shoulda-context', RUBY_VERSION < '1.9' ? '= 1.2.1' : '>= 1.2.1'
gem 'test-unit', RUBY_VERSION < '1.9' ? '~> 2.0' : '>= 3.0'
gem 'json', '>= 1.8' if RUBY_VERSION < '1.9'
- gem 'rdoc', RUBY_VERSION < '1.9' ? '~> 4.2.2' : '>= 4.2.2'
+ gem 'rdoc', Gem::Version.new(RUBY_VERSION) < Gem::Version.new('1.9.3') ? '~> 4.2.2' : Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.2.2') ? '< 6' : '>= 6'
end