Class: Luban::Deployment::Packages::Rubygems::Installer
- Inherits:
-
Luban::Deployment::Package::Installer
- Object
- Worker::Base
- Luban::Deployment::Package::Worker
- Luban::Deployment::Package::Installer
- Luban::Deployment::Packages::Rubygems::Installer
- Defined in:
- lib/luban/deployment/packages/rubygems.rb
Constant Summary
Constants inherited from Luban::Deployment::Package::Installer
Luban::Deployment::Package::Installer::DefaultLibExtension, Luban::Deployment::Package::Installer::DefaultSrcFileExtName, Luban::Deployment::Package::Installer::LibExtensions
Constants included from Luban::Deployment::Parameters::General
Luban::Deployment::Parameters::General::DefaultLubanRootPath
Constants included from Helpers::Utils
Instance Attribute Summary
Attributes inherited from Luban::Deployment::Package::Installer
#build_env_vars, #configure_opts
Attributes inherited from Worker::Base
Attributes included from Helpers::Utils
Attributes included from Helpers::Configuration
Instance Method Summary collapse
- #install_doc? ⇒ Boolean
- #install_path ⇒ Object
- #installed? ⇒ Boolean
- #package_path ⇒ Object
- #ruby_executable ⇒ Object
- #source_repo ⇒ Object
- #source_url_root ⇒ Object
- #src_file_extname ⇒ Object
Methods inherited from Luban::Deployment::Package::Installer
#build_path, #cached?, #cleanup_all, #configure_executable, #current_configured?, #current_package_version, #current_symlinked?, #currently_used_by, #default_configure_opts, #download, #download_url, #downloaded?, #get_summary, #include_path, #install, #install_log_file_name, #install_log_file_path, #install_log_path, #lib_path, #required_packages, #src_cache_path, #src_file_md5, #src_file_name, #src_file_path, #src_md5_file_path, #uninstall, #update_binstubs, #validate_download_url, #whence_origin, #which_current
Methods inherited from Luban::Deployment::Package::Worker
#bin_path, #child?, #current_bin_path, #current_path, define_executable, package_class, #package_downloads_path, #package_tmp_path, #package_versions_path, #parent, worker_class
Methods included from Worker::Paths::Remote
#app_bin_path, #app_path, #app_tmp_path, #current_app_path, #downloads_path, #env_path, #envrc_file, #etc_path, #logrotate_path, #luban_install_path, #project_path, #releases_path, #shared_path, #tmp_path, #unset_envrc_file
Methods inherited from Worker::Base
#dry_run?, #env_name, #force?, #initialize, #linux?, #osx?, #run, #target_full_name, #target_major_version, #target_name, #target_patch_level, #target_version
Methods included from Luban::Deployment::Parameters::Base
Methods included from Luban::Deployment::Parameters::General
Methods included from Helpers::Utils
#assure, #assure_dirs, #assure_symlink, #capture, #check_pass?, #chmod, #cp, #directory?, #file?, #hardware_name, #host, #hostname, #ln, #match?, #md5_for_file, #md5_matched?, #method_missing, #mkdir, #mv, #now, #os_name, #os_release, #readlink, #render_template, #revision_match?, #rm, #rmdir, #sudo, #symlink?, #upload_by_template, #url_exists?, #user_home
Methods included from Helpers::Configuration
#ask, #default_templates_paths, #fetch, #find_template_file, #load_configuration_file, #primary, #release_roles, #role, #roles, #server, #set, #set_default, #syntax_error?
Constructor Details
This class inherits a constructor from Luban::Deployment::Worker::Base
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Luban::Deployment::Helpers::Utils
Instance Method Details
#install_doc? ⇒ Boolean
13 14 15 |
# File 'lib/luban/deployment/packages/rubygems.rb', line 13 def install_doc? task.opts.install_doc end |
#install_path ⇒ Object
21 22 23 |
# File 'lib/luban/deployment/packages/rubygems.rb', line 21 def install_path parent.install_path end |
#installed? ⇒ Boolean
44 45 46 47 |
# File 'lib/luban/deployment/packages/rubygems.rb', line 44 def installed? return false unless file?(gem_executable) match?("#{gem_executable} -v", package_version) end |
#package_path ⇒ Object
17 18 19 |
# File 'lib/luban/deployment/packages/rubygems.rb', line 17 def package_path parent.package_path end |
#ruby_executable ⇒ Object
27 28 29 |
# File 'lib/luban/deployment/packages/rubygems.rb', line 27 def ruby_executable parent.ruby_executable end |
#source_repo ⇒ Object
35 36 37 38 |
# File 'lib/luban/deployment/packages/rubygems.rb', line 35 def source_repo #@source_repo ||= "http://production.cf.rubygems.org" @source_repo ||= "https://rubygems.org" end |
#source_url_root ⇒ Object
40 41 42 |
# File 'lib/luban/deployment/packages/rubygems.rb', line 40 def source_url_root @source_url_root ||= "rubygems" end |
#src_file_extname ⇒ Object
31 32 33 |
# File 'lib/luban/deployment/packages/rubygems.rb', line 31 def src_file_extname @src_file_extname ||= 'tgz' end |