Sha256: 9e8164018b858aa353366c4ee866259f8ae55de1e71be72f67e04fc394bcc904

Contents?: true

Size: 886 Bytes

Versions: 6

Compression:

Stored size: 886 Bytes

Contents

# frozen_string_literal: true

require 'travis/cli/setup'

module Travis
  module CLI
    class Setup
      class CloudFoundry < Service
        description 'automatic deployment to Cloud Foundry'

        def run
          deploy '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

6 entries across 6 versions & 1 rubygems

Version Path
travis-1.14.0 lib/travis/cli/setup/cloud_foundry.rb
travis-1.13.3 lib/travis/cli/setup/cloud_foundry.rb
travis-1.13.2 lib/travis/cli/setup/cloud_foundry.rb
travis-1.13.1 lib/travis/cli/setup/cloud_foundry.rb
travis-1.13.0 lib/travis/cli/setup/cloud_foundry.rb
travis-1.12.0 lib/travis/cli/setup/cloud_foundry.rb