Skip to content

Commit

Permalink
script/isolate_for_tests: disable sqlite3-ruby for Ruby 2.0.0dev
Browse files Browse the repository at this point in the history
We don't need it because we don't test old Rails with bleeding edge Ruby.
  • Loading branch information
Eric Wong committed Jan 27, 2012
1 parent c8abf6a commit 49c70ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion script/isolate_for_tests
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ opts = {

pid = fork do
Isolate.now!(opts) do
gem 'sqlite3-ruby', '1.2.5'
if RUBY_VERSION.to_f < 2.0
gem 'sqlite3-ruby', '1.2.5'
end
gem 'raindrops', '0.8.0'
gem 'kgio-monkey', '0.3.0'
gem 'kgio', '2.7.2'
Expand Down

0 comments on commit 49c70ae

Please sign in to comment.