Skip to content

Commit

Permalink
(cosmetic: remove unnecessary parentheses)
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-ati committed Jun 16, 2014
1 parent 749da1d commit 3d47049
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions on_what.rb
Expand Up @@ -6,9 +6,9 @@ def on_travis?
end

def on_jruby?
(defined?(RUBY_ENGINE) && 'jruby' == RUBY_ENGINE)
defined?(RUBY_ENGINE) && 'jruby' == RUBY_ENGINE
end

def on_1_8?
RUBY_VERSION.start_with? '1.8'
end
end

0 comments on commit 3d47049

Please sign in to comment.