class GemBootstrap::OptionParser
@api private
Public Instance Methods
parse(args)
click to toggle source
# File lib/gem-bootstrap/option_parser.rb, line 9 def parse(args) Slop.parse(args, banner: banner) do |o| o.string '--author', 'Author name' o.string '--email', 'Author email' o.string '--github-username' o.bool '--source', 'Only generate source' o.bool '-h', '--help' end end