1
0
Fork 0
mirror of https://github.com/ms-ati/docile synced 2023-03-27 23:21:52 -04:00

(cosmetic: remove unnecessary parentheses)

This commit is contained in:
Marc Siegel 2014-06-16 08:01:41 -04:00
parent 749da1d5ec
commit 3d4704932e

View file

@ -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