Sha256: 0150731c36ecac935e866110cd5063c3bbd348b028a4fcf6f74e0b99a4245fcf
Contents?: true
Size: 901 Bytes
Versions: 379
Compression:
Stored size: 901 Bytes
Contents
require 'travis/cli/setup' require 'yaml' module Travis module CLI class Setup class EngineYard < Service description "automatic deployment to Engine Yard" 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 end end end end
Version data entries
379 entries across 379 versions & 3 rubygems