Method: Bundler::RubyVersion#host

Defined in:
lib/bundler/ruby_version.rb

#hostObject



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

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