Sha256: 42979b09053242d2f5a0045ebeb38ca90b6077624d362c94ca0c69d413f896ad

Contents?: true

Size: 823 Bytes

Versions: 9

Compression:

Stored size: 823 Bytes

Contents

#!/usr/bin/env ruby

require 'optparse'
require 'methadone'
require '<%= require_file %>'

class App
  include Methadone::Main
  include Methadone::CLILogging

  main do # Add args you want: |like,so|
    # your program code here
    # You can access CLI options via
    # the options Hash
  end

  # supplemental methods here

  # Declare command-line interface here

  # description "one line description of your app"
  #
  # Accept flags via:
  # on("--flag VAL","Some flag")
  # options[flag] will contain VAL
  #
  # Specify switches via:
  # on("--[no-]switch","Some switch")
  #
  # Or, just call OptionParser methods on opts
  #
  # Require an argument
  # arg :some_arg 
  #
  # # Make an argument optional
  # arg :optional_arg, :optional

  version <%= module_name %>::VERSION

  use_log_level_option

  go!
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
methadone-1.6.0 templates/full/bin/executable.erb
methadone-1.5.1 templates/full/bin/executable.erb
methadone-1.5.0 templates/full/bin/executable.erb
methadone-1.4.0 templates/full/bin/executable.erb
methadone-1.3.2 templates/full/bin/executable.erb
methadone-1.3.1 templates/full/bin/executable.erb
methadone-1.3.0 templates/full/bin/executable.erb
methadone-1.2.6 templates/full/bin/executable.erb
methadone-1.2.5 templates/full/bin/executable.erb