Sha256: 0c6168c220e27dbe9a9ade51df47751728557404793f03355e14c0a727d21bdd
Contents?: true
Size: 316 Bytes
Versions: 50
Compression:
Stored size: 316 Bytes
Contents
# NOTE: Very simple tests for what system we are on, extracted for sharing # between Rakefile, gemspec, and spec_helper. Not for use in actual library. def on_travis? ENV['CI'] == 'true' end def on_jruby? (defined?(RUBY_ENGINE) && 'jruby' == RUBY_ENGINE) end def on_1_8? RUBY_VERSION.start_with? '1.8' end
Version data entries
50 entries across 47 versions & 14 rubygems