Class: GitCurate::CLIParser
- Inherits:
-
Object
- Object
- GitCurate::CLIParser
- Defined in:
- lib/git_curate/cli_parser.rb
Instance Attribute Summary collapse
-
#parsed_options ⇒ Object
readonly
Returns the value of attribute parsed_options.
Instance Method Summary collapse
-
#initialize ⇒ CLIParser
constructor
A new instance of CLIParser.
-
#parse(options) ⇒ Object
Sets @parsed_options according to the options received, and return truthy if and only if the program should continue after the options are passed.
Constructor Details
#initialize ⇒ CLIParser
Returns a new instance of CLIParser.
9 10 11 |
# File 'lib/git_curate/cli_parser.rb', line 9 def initialize @parsed_options = {} end |
Instance Attribute Details
#parsed_options ⇒ Object (readonly)
Returns the value of attribute parsed_options.
7 8 9 |
# File 'lib/git_curate/cli_parser.rb', line 7 def @parsed_options end |
Instance Method Details
#parse(options) ⇒ Object
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`.
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/git_curate/cli_parser.rb', line 17 def parse() opt_parser = OptionParser.new do |opts| opts. = <<-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.[:list] = true end opts.on( "--merged", "Only list branches whose tips are reachable from HEAD", ) do self.[:merged_opt] = "--merged" end opts.on( "--no-merged", "Only list branches whose tips are not reachable from HEAD", ) do self.[:merged_opt] = "--no-merged" 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!() return true end |