From a33b52d6d011125daa1ead214c272c8388c403b6 Mon Sep 17 00:00:00 2001 From: Petr Korolev Date: Mon, 10 Nov 2014 14:39:31 +0200 Subject: [PATCH] typo fix --- bump_gemfile.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bump_gemfile.rb b/bump_gemfile.rb index ccfddd7..9705a91 100755 --- a/bump_gemfile.rb +++ b/bump_gemfile.rb @@ -179,7 +179,7 @@ def run_bumping_script bumped_version = bump_version(versions_array) unless @options[:dry_run] - puts 'Are you sure? Click Y to continue:' + puts 'Are you sure? Press Y to continue:' str = gets.chomp if str != 'Y' puts '-> exit' @@ -196,7 +196,6 @@ def run_bumping_script execute_line_if_not_dry_run("gem build #{spec_file}") gem = find_current_gem_file - execute_line_if_not_dry_run("gem push #{gem}") # execute_line_if_not_dry_run("pod trunk push #{spec_file}") @@ -206,7 +205,7 @@ def revert_last_bump spec_file = find_spec_file result, _ = find_version_in_podspec(spec_file) - puts "DELETE tag #{result} and HARD reset HEAD~1?\nClick Y to continue:" + puts "DELETE tag #{result} and HARD reset HEAD~1?\nPress Y to continue:" str = gets.chomp if str != 'Y' puts '-> exit'