class Faststrap::InstallAction

Public Class Methods

cmd() click to toggle source
# File lib/faststrap/install_action.rb, line 21
def self.cmd
  "InstallAction cmd"
end
description() click to toggle source
# File lib/faststrap/install_action.rb, line 16
def self.description
  "InstallAction description"
end
group() click to toggle source
# File lib/faststrap/install_action.rb, line 12
def self.group
  ""
end
name() click to toggle source
# File lib/faststrap/install_action.rb, line 29
def self.name
  "InstallAction"
end
run() click to toggle source
# File lib/faststrap/install_action.rb, line 33
def self.run
  puts "Installing #{name} .."
  cmd
end
ucmd() click to toggle source
# File lib/faststrap/install_action.rb, line 25
def self.ucmd
  "UninstallAction cmd"
end
uninstall() click to toggle source
# File lib/faststrap/install_action.rb, line 38
def self.uninstall
  puts "Uninstalling #{name} .."
  ucmd
end