Sha256: f612060d478b4fdaca0ff208eb0f79ff06d3ffc9c7ae382d395e997ab63e79c4
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
require 'optparse' require 'ostruct' require 'pivotal-github/options' class Command attr_accessor :args, :cmd, :options, :known_options, :unknown_options def initialize(args = []) self.args = args self.options = OpenStruct.new parse end def parse self.known_options = Options::known_options(parser, args) self.unknown_options = Options::unknown_options(parser, args) parser.parse(known_options) end def parser OptionParser.new end def story_branch `git rev-parse --abbrev-ref HEAD`.strip end def story_id story_branch.scan(/\d+/).first end # Runs a command. # If the argument array contains '--debug', returns the command that would # have been run. def self.run!(command_class, args) debug = args.delete('--debug') command = command_class.new(args) if debug puts command.cmd return 1 else command.run! return 0 end end private # Returns an argument string based on given arguments. # The main trick is to add in quotes for option # arguments when necessary. # For example, ['-a', '-m', 'foo bar'] becomes # '-a -m "foo bar"' def argument_string(args) args.inject([]) do |opts, opt| opts << (opt =~ /^-/ ? opt : opt.inspect) end.join(' ') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pivotal-github-0.6.14 | lib/pivotal-github/command.rb |