class GitCurate::CLIParser

Attributes

parsed_options[R]

Public Class Methods

new() click to toggle source
# File lib/git_curate/cli_parser.rb, line 9
def initialize
  @parsed_options = {}
end

Public Instance Methods

parse(options) click to toggle source

Sets @parsed_options according to the options received, and return truthy if and only if the program should continue after the options are passed. Usually this method should be passed ARGV. Any elements of `options` that are not processed by this method, will remain in `options`; elements that are processed, will be destructively removed from `options`.

# File lib/git_curate/cli_parser.rb, line 17
    def parse(options)
      opt_parser = OptionParser.new do |opts|
        opts.banner = <<-EOF
  Usage: git curate [options]

  Interactively step through the local branches of the current git repository, showing various
  information and asking whether to keep or delete each branch.

  In the default (interactive) mode, the current branch is excluded, as it cannot be deleted.

  Note git-curate does not perform a "git fetch"; if you want to be sure the output reflects the current
  state of any remotes, run "git fetch" first.

  Options:
  EOF

        opts.on(
          "-l",
          "--list",
          "Show summary of local branches, including current branch, without stepping through interactively"
        ) do
          self.parsed_options[:list] = true
        end

        opts.on("-h", "Print this help message") do
          puts opts
          return false
        end

        opts.on("-v", "--version", "Print the currently installed version of this program") do
          puts "git curate v#{GitCurate::VERSION} #{GitCurate::COPYRIGHT}"
          return false
        end
      end

      opt_parser.parse!(options)
      return true
    end