Sha256: 3b9325ea34fe9a46960c20e82326624ef023bcb5e8f7a8e0b4c1b15c0a481fed

Contents?: true

Size: 536 Bytes

Versions: 1

Compression:

Stored size: 536 Bytes

Contents

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

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

options = Inochi.main :Testing_please_ignore 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_ignore-0.0.0 bin/testing_please_ignore