Skip to content

Commit 44a4f08

Browse files
committed
fixing gems for Ruby 1.9
1 parent 51ee233 commit 44a4f08

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Gemfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ gemspec
77
# Include everything needed to run rake, tests, features, etc.
88
group :development do
99
gem 'bundler'
10-
gem 'rake', RUBY_VERSION < '1.9' ? '~> 10.5' : '>= 10.5'
11-
gem 'RedCloth', RUBY_PLATFORM == 'java' ? '= 4.2.9' : '>= 4.0.3'
12-
gem 'term-ansicolor', '>= 1.3.2'
13-
gem 'tins', RUBY_VERSION < '2.0' ? '~> 1.6.0' : '>= 1.6.0'
14-
gem 'shoulda-context', RUBY_VERSION < '1.9' ? '= 1.2.1' : '>= 1.2.1'
15-
gem 'test-unit', RUBY_VERSION < '1.9' ? '~> 2.0' : '>= 3.0'
10+
gem 'rake', RUBY_VERSION < '1.9' ? '~> 10.5' : '>= 10.5'
11+
gem 'RedCloth', RUBY_PLATFORM == 'java' ? '= 4.2.9' : '>= 4.0.3'
12+
gem 'term-ansicolor', RUBY_VERSION < '2.0' ? '~> 1.3.2' : '>= 1.3.2'
13+
gem 'tins', RUBY_VERSION < '2.0' ? '~> 1.6.0' : '>= 1.6.0'
14+
gem 'shoulda-context', RUBY_VERSION < '1.9' ? '= 1.2.1' : '>= 1.2.1'
15+
gem 'test-unit', RUBY_VERSION < '1.9' ? '~> 2.0' : '>= 3.0'
1616
gem 'json', '>= 1.8' if RUBY_VERSION < '1.9'
17-
gem 'rdoc', RUBY_VERSION < '1.9' ? '~> 4.2.2' : '>= 4.2.2'
17+
gem 'rdoc', RUBY_VERSION < '1.9' ? '~> 4.2.2' : '>= 4.2.2'
1818
end

0 commit comments

Comments
 (0)