Skip to content

Commit

Permalink
Merge pull request #125 from chewi/ruby20-fix
Browse files Browse the repository at this point in the history
The Ruby 1.9 fixes should only apply to 1.9.0 and 1.9.1.
  • Loading branch information
eric committed Feb 25, 2013
2 parents 00ebc06 + 57fbbc1 commit 150b518
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/god/driver.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'monitor'

# Ruby 1.9 specific fixes.
unless RUBY_VERSION < '1.9'
# Ruby 1.9.1 specific fixes.
if RUBY_VERSION.between?('1.9', '1.9.1')
require 'god/compat19'
end

Expand Down

0 comments on commit 150b518

Please sign in to comment.