def run
deploy 'engineyard' do |config|
eyrc = File.expand_path(".eyrc", Dir.home)
config['api_key'] = YAML.load_file(eyrc)["api_token"] if File.exists?(eyrc)
config['api_key'] = ask("API token: ") { |q| q.echo = "*" }.to_s unless config['api_key']
env = ask("Environment (optional): ").to_s
config['environment'] = env unless env.empty?
migrate = agree("Run migrations on deploy? ") { |q| q.default = 'yes' }
config['migrate'] = ask("Migration command: ") { |q| q.default = "rake db:migrate" } if migrate
end
end