class Tug::Deploy

Public Instance Methods

execute(config_file) click to toggle source
# File lib/tug/interface/interface.rb, line 78
def execute(config_file)
  command = Tug::Command.command_for_string("deploy")
  command.execute(config_file)
end
hockeyapp() click to toggle source
# File lib/tug/interface/interface.rb, line 72
def hockeyapp
  deployer = Tug::Hockeyapp.new(options)
  deployer.deploy
end
testflight() click to toggle source
# File lib/tug/interface/interface.rb, line 26
def testflight
  deployer = Tug::Testflight.new(options)
  deployer.deploy
end