Sha256: 888a6194bc6d4b408e0419a96f60a8965c054fa85ac2b91663d8b21b3195382c
Contents?: true
Size: 868 Bytes
Versions: 116
Compression:
Stored size: 868 Bytes
Contents
require 'travis/cli/setup' module Travis module CLI class Setup class CloudFoundry < Service description "automatic deployment to Cloud Foundry" def run deploy 'provider' => 'cloudfoundry' do |config| target_file = File.expand_path('.cf/config.json', Dir.home) config['api'] ||= JSON.parse(File.read(target_file))["Target"] if File.exist? target_file config['api'] ||= ask("Cloud Foundry api: ").to_s config['username'] ||= ask("Cloud Foundry username: ").to_s config['password'] ||= ask("Cloud Foundry password: ") { |q| q.echo = "*" }.to_s config['organization'] ||= ask("Cloud Foundry organization: ").to_s config['space'] ||= ask("Cloud Foundry space: ").to_s end end end end end end
Version data entries
116 entries across 116 versions & 1 rubygems