Sha256: 6e3805369c34282176b35860219664c5cb1a6e062095b68bfe4fe1e28f52283a

Contents?: true

Size: 538 Bytes

Versions: 1

Compression:

Stored size: 538 Bytes

Contents

#!/usr/bin/ruby -w
#
# TODO: Explain the command-line usage of this program here.
#
# Usage:
#
#   testing_please_ignore2 [Option...] Arg1 Arg2 Arg3...
#

require 'rubygems'
gem 'inochi', '~> 0'
require 'inochi'

options = Inochi.main :Testing_please_ignore2 do
  # TODO: define command-line options here.
  #       see http://trollop.rubyforge.org/
  #
  # NOTE: this is completely optional!
end

# TODO: add the body of your program here

puts "Command-line options:   #{options.inspect}"
puts "Command-line arguments: #{ARGV.inspect}"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
testing_please_ignore2-0.0.0 bin/testing_please_ignore2