Class: RubyConfig::Runtimes::Ruby186Runtime
Constant Summary
collapse
- MAJOR_VERSION =
'1.8'
- MINOR_VERSION =
'6'
- PATCH_LEVEL =
'383'
- VERSION_STRING =
RubyConfig::Runtimes::RubyFromSourceHelper.ruby_version(MAJOR_VERSION, MINOR_VERSION, PATCH_LEVEL)
- HANDLE =
"ruby-#{VERSION_STRING}"
- DESCRIPTION =
"Ruby #{VERSION_STRING}"
- ARCHIVE_PATH =
"ruby-#{VERSION_STRING}"
Instance Attribute Summary
#install_path, #tmp_path
Instance Method Summary
collapse
#additional_library_path, #already_installed?, #archive_path, #create_directory_structure, #default_library_path, #delete, #do_install, #gem_bin_path, #gem_executable_path, #gem_home_path, #initialize, #irb_executable_path, #major_version, #post_install, #prepare_install, #ruby_bin_path, #ruby_executable_path, #ruby_home_path, #rubygems_installed?, #runtime_specific_gems, #to_s
Instance Method Details
#archive_download_url ⇒ Object
#archive_file_name ⇒ Object
26
27
28
|
# File 'lib/ruby_config/runtimes/ruby186_runtime.rb', line 26
def archive_file_name
"ruby-#{VERSION_STRING}.tar.gz"
end
|
#description ⇒ Object
22
23
24
|
# File 'lib/ruby_config/runtimes/ruby186_runtime.rb', line 22
def description
DESCRIPTION
end
|
#handle ⇒ Object
18
19
20
|
# File 'lib/ruby_config/runtimes/ruby186_runtime.rb', line 18
def handle
HANDLE
end
|