123456789_123456789_123456789_123456789_123456789_

Class: Bundler::CurrentRuby

Relationships & Source Files
Inherits: Object
Defined in: lib/bundler/current_ruby.rb

Constant Summary

Instance Attribute Summary

Instance Attribute Details

#jruby?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/current_ruby.rb', line 54

def jruby?
  RUBY_ENGINE == "jruby"
end

#maglev?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/current_ruby.rb', line 58

def maglev?
  RUBY_ENGINE == "maglev"
end

#mingw?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/current_ruby.rb', line 74

def mingw?
  Bundler::WINDOWS && Bundler.local_platform != Gem::Platform::RUBY && Bundler.local_platform.os == "mingw32" && Bundler.local_platform.cpu != "x64"
end

#mri?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/current_ruby.rb', line 46

def mri?
  !mswin? && RUBY_ENGINE == "ruby"
end

#mswin64?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/current_ruby.rb', line 70

def mswin64?
  Bundler::WINDOWS && Bundler.local_platform != Gem::Platform::RUBY && Bundler.local_platform.os == "mswin64" && Bundler.local_platform.cpu == "x64"
end

#mswin?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/current_ruby.rb', line 66

def mswin?
  Bundler::WINDOWS
end

#rbx?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/current_ruby.rb', line 50

def rbx?
  ruby? && RUBY_ENGINE == "rbx"
end

#ruby?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/current_ruby.rb', line 40

def ruby?
  return true if Bundler::GemHelpers.generic_local_platform == Gem::Platform::RUBY

  !mswin? && (RUBY_ENGINE == "ruby" || RUBY_ENGINE == "rbx" || RUBY_ENGINE == "maglev" || RUBY_ENGINE == "truffleruby")
end

#truffleruby?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/current_ruby.rb', line 62

def truffleruby?
  RUBY_ENGINE == "truffleruby"
end

#x64_mingw?Boolean (readonly)

[ GitHub ]

  
# File 'lib/bundler/current_ruby.rb', line 78

def x64_mingw?
  Bundler::WINDOWS && Bundler.local_platform != Gem::Platform::RUBY && Bundler.local_platform.os == "mingw32" && Bundler.local_platform.cpu == "x64"
end