lib/travis/cli/setup/nodejitsu.rb in travis-1.11.1 vs lib/travis/cli/setup/nodejitsu.rb in travis-1.12.0
- old
+ new
@@ -1,13 +1,15 @@
+# frozen_string_literal: true
+
require 'travis/cli/setup'
require 'json'
module Travis
module CLI
class Setup
class Nodejitsu < Service
- description "automatic deployment to Nodejitsu"
+ description 'automatic deployment to Nodejitsu'
def run
deploy 'nodejitsu' do |config|
jitsu_file = File.expand_path('.jitsuconf', ENV['HOME'])
@@ -15,13 +17,13 @@
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
+ 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
\ No newline at end of file
+end