Method: Bundler::RubyVersion#host

Defined in:
lib/bundler/ruby_version.rb

#hostObject

[View source]

79
80
81
82
83
84
85
# File 'lib/bundler/ruby_version.rb', line 79

def host
  @host ||= [
    RbConfig::CONFIG["host_cpu"],
    RbConfig::CONFIG["host_vendor"],
    RbConfig::CONFIG["host_os"],
  ].join("-")
end