Sha256: 7537ea48f2e150b2cdbcb393d809b433c959f23498aa2832d6680866863783e2
Contents?: true
Size: 744 Bytes
Versions: 385
Compression:
Stored size: 744 Bytes
Contents
require 'travis/cli/setup' require 'json' module Travis module CLI class Setup class Nodejitsu < Service description "automatic deployment to Nodejitsu" def run deploy 'nodejitsu' do |config| jitsu_file = File.expand_path('.jitsuconf', ENV['HOME']) if File.exist? jitsu_file jitsu_conf = JSON.parse(File.read(jitsu_file)) config['user'] = jitsu_conf['username'] config['api_key'] = jitsu_conf['apiToken'] end config['user'] ||= ask("Nodejitsu user: ").to_s config['api_key'] ||= ask("Nodejitsu API token: ") { |q| q.echo = "*" }.to_s end end end end end end
Version data entries
385 entries across 385 versions & 3 rubygems