Sha256: c220b7308c3075b299b76383e3d67a5c2086152b5a0b3ea1353971b465dd3e7c
Contents?: true
Size: 857 Bytes
Versions: 108
Compression:
Stored size: 857 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/target', Dir.home) config['target'] ||= File.read(target_file).chomp if File.exist? target_file config['target'] ||= ask("Cloud Foundry target: ").to_s config['username'] ||= ask("Cloud Foundry user name: ").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
108 entries across 108 versions & 1 rubygems