Sha256: 8a35751103ec6c9a6e130d9f9372ecf549ae73a2e25d6340c8eb3e95e498b393
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
module GitBumper # This class receives a Hash of options parsed by CLIParser and executes the # requested action. class CLI attr_reader :error_msg # @param [Hash] def initialize(options) @options = options @error = false @error_msg = '' end def run Git.fetch_tags old_tag = greatest_tag return error('No tags found.') unless old_tag new_tag = old_tag.clone new_tag.increment(@options.fetch(:increment)) puts "The old tag is #{old_tag}" puts "The new tag will be #{new_tag}" puts 'Push to origin? (y/N)' return error('Aborted.') unless prompt_yes Git.create_tag(new_tag) Git.push_tag(new_tag) end def error? @error end private def error(msg) @error = true @error_msg = msg end def prompt_yes STDIN.gets.chomp.to_s =~ /y(es)?/i end def greatest_tag Git.greatest_tag(klass: @options.fetch(:klass), prefix: @options.fetch(:prefix)) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
git_bumper-0.1.2 | lib/git_bumper/cli.rb |