class Bundler::CurrentRuby
def jruby?
def jruby? defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby" end
def jruby_18?
def jruby_18? jruby? && on_18? end
def jruby_19?
def jruby_19? jruby? && on_19? end
def maglev?
def maglev? defined?(RUBY_ENGINE) && RUBY_ENGINE == "maglev" end
def mingw?
def mingw? Bundler::WINDOWS && Gem::Platform.local.os == "mingw32" && Gem::Platform.local.cpu != 'x64' end
def mingw_18?
def mingw_18? mingw? && on_18? end
def mingw_19?
def mingw_19? mingw? && on_19? end
def mingw_20?
def mingw_20? mingw? && on_20? end
def mingw_21?
def mingw_21? mingw? && on_21? end
def mingw_22?
def mingw_22? mingw? && on_22? end
def mri?
def mri? !mswin? && (!defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby") end
def mri_18?
def mri_18? mri? && on_18? end
def mri_19?
def mri_19? mri? && on_19? end
def mri_20?
def mri_20? mri? && on_20? end
def mri_21?
def mri_21? mri? && on_21? end
def mri_22?
def mri_22? mri? && on_22? end
def mswin64?
def mswin64? Bundler::WINDOWS && Gem::Platform.local.os == "mswin64" && Gem::Platform.local.cpu == 'x64' end
def mswin64_19?
def mswin64_19? mswin64? && on_19? end
def mswin64_20?
def mswin64_20? mswin64? && on_20? end
def mswin64_21?
def mswin64_21? mswin64? && on_21? end
def mswin64_22?
def mswin64_22? mswin64? && on_22? end
def mswin?
def mswin? Bundler::WINDOWS end
def mswin_18?
def mswin_18? mswin? && on_18? end
def mswin_19?
def mswin_19? mswin? && on_19? end
def mswin_20?
def mswin_20? mswin? && on_20? end
def mswin_21?
def mswin_21? mswin? && on_21? end
def mswin_22?
def mswin_22? mswin? && on_22? end
def on_18?
def on_18? RUBY_VERSION =~ /^1\.8/ end
def on_19?
def on_19? RUBY_VERSION =~ /^1\.9/ end
def on_20?
def on_20? RUBY_VERSION =~ /^2\.0/ end
def on_21?
def on_21? RUBY_VERSION =~ /^2\.1/ end
def on_22?
def on_22? RUBY_VERSION =~ /^2\.2/ end
def rbx?
def rbx? ruby? && defined?(RUBY_ENGINE) && RUBY_ENGINE == "rbx" end
def ruby?
def ruby? !mswin? && (!defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby" || RUBY_ENGINE == "rbx" || RUBY_ENGINE == "maglev") end
def ruby_18?
def ruby_18? ruby? && on_18? end
def ruby_19?
def ruby_19? ruby? && on_19? end
def ruby_20?
def ruby_20? ruby? && on_20? end
def ruby_21?
def ruby_21? ruby? && on_21? end
def ruby_22?
def ruby_22? ruby? && on_22? end
def x64_mingw?
def x64_mingw? Bundler::WINDOWS && Gem::Platform.local.os == "mingw32" && Gem::Platform.local.cpu == 'x64' end
def x64_mingw_20?
def x64_mingw_20? x64_mingw? && on_20? end
def x64_mingw_21?
def x64_mingw_21? x64_mingw? && on_21? end
def x64_mingw_22?
def x64_mingw_22? x64_mingw? && on_22? end