lib/travis/cli/setup/ruby_gems.rb in travis-1.11.1 vs lib/travis/cli/setup/ruby_gems.rb in travis-1.12.0

- old
+ new

@@ -1,25 +1,27 @@ +# frozen_string_literal: true + require 'travis/cli/setup' module Travis module CLI class Setup class RubyGems < Service - description "automatic release to RubyGems" + description 'automatic release to RubyGems' def run deploy 'rubygems', 'release' do |config| authorization_file = File.expand_path('.rubygems/authorization', ENV['HOME']) credentials_file = File.expand_path('.gem/credentials', ENV['HOME']) config['api_key'] ||= File.read(authorization_file) if File.exist? authorization_file config['api_key'] ||= YAML.load_file(credentials_file)[:rubygems_api_key] if File.exist? credentials_file - config['api_key'] ||= ask("RubyGems API token: ") { |q| q.echo = "*" }.to_s - config['gem'] ||= ask("Gem name: ") { |q| q.default = repository.name }.to_s + config['api_key'] ||= ask('RubyGems API token: ') { |q| q.echo = '*' }.to_s + config['gem'] ||= ask('Gem name: ') { |q| q.default = repository.name }.to_s - on("Release only tagged commits? ", config, 'tags' => true) + on('Release only tagged commits? ', config, 'tags' => true) end end end end end -end \ No newline at end of file +end