Class: Bundler::CurrentRuby

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/current_ruby.rb

Constant Summary collapse

KNOWN_MINOR_VERSIONS =
%w[
  1.8
  1.9
  2.0
  2.1
  2.2
  2.3
  2.4
  2.5
  2.6
  2.7
  3.0
  3.1
].freeze
KNOWN_MAJOR_VERSIONS =
KNOWN_MINOR_VERSIONS.map {|v| v.split(".", 2).first }.uniq.freeze
KNOWN_PLATFORMS =
%w[
  jruby
  maglev
  mingw
  mri
  mswin
  mswin64
  rbx
  ruby
  truffleruby
  windows
  x64_mingw
].freeze

Instance Method Summary collapse

Instance Method Details

#jruby?Boolean

Returns:

  • (Boolean)


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

def jruby?
  RUBY_ENGINE == "jruby"
end

#maglev?Boolean

Returns:

  • (Boolean)


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

def maglev?
  RUBY_ENGINE == "maglev"
end

#mingw?Boolean

Returns:

  • (Boolean)


85
86
87
# File 'lib/bundler/current_ruby.rb', line 85

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

#mri?Boolean

Returns:

  • (Boolean)


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

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

#mswin64?Boolean

Returns:

  • (Boolean)


81
82
83
# File 'lib/bundler/current_ruby.rb', line 81

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

#mswin?Boolean

Returns:

  • (Boolean)


73
74
75
76
77
78
79
# File 'lib/bundler/current_ruby.rb', line 73

def mswin?
  # For backwards compatibility
  windows?

  # TODO: This should correctly be:
  # windows? && Bundler.local_platform != Gem::Platform::RUBY && Bundler.local_platform.os == "mswin32" && Bundler.local_platform.cpu == "x86"
end

#rbx?Boolean

Returns:

  • (Boolean)


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

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

#ruby?Boolean

Returns:

  • (Boolean)


43
44
45
46
47
# File 'lib/bundler/current_ruby.rb', line 43

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

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

#truffleruby?Boolean

Returns:

  • (Boolean)


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

def truffleruby?
  RUBY_ENGINE == "truffleruby"
end

#windows?Boolean

Returns:

  • (Boolean)


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

def windows?
  Gem.win_platform?
end

#x64_mingw?Boolean

Returns:

  • (Boolean)


89
90
91
# File 'lib/bundler/current_ruby.rb', line 89

def x64_mingw?
  Gem.win_platform? && Bundler.local_platform != Gem::Platform::RUBY && Bundler.local_platform.os.start_with?("mingw") && Bundler.local_platform.cpu == "x64"
end