Class: InstallGemLocal::Action

Inherits:
Object
  • Object
show all
Extended by:
BuildGem, CopyGem, InstallGem, PushGem, RemoveGem
Defined in:
lib/install_gem_local/action.rb

Class Method Summary collapse

Methods included from InstallGem

install_gem, install_gem_from_path

Methods included from CopyGem

choose_copy_folder, copy_file_to_path, copy_gem

Methods included from RemoveGem

remove_file_from_path, remove_gem

Methods included from BuildGem

build_gem

Methods included from PushGem

push_gem, push_gem_from_path

Class Method Details

.till_copyObject



18
19
20
21
# File 'lib/install_gem_local/action.rb', line 18

def till_copy
  till_install
  copy_gem
end

.till_installObject



12
13
14
15
16
# File 'lib/install_gem_local/action.rb', line 12

def till_install
  remove_gem
  build_gem
  install_gem
end