Sha256: 19ea27f29a8af3215ba4cb454dd302550bc0f387f387be98b4c05b82feac2e89
Contents?: true
Size: 548 Bytes
Versions: 5
Compression:
Stored size: 548 Bytes
Contents
#!/usr/bin/env ruby require File.expand_path( File.join(File.dirname(__FILE__), %w[.. lib roo])) require 'rubygems' require 'choice' Choice.options do header '' header 'Options:' option :help do long '--help' desc 'Show this message' end option :version do short '-v' long '--version' desc 'Show version' action do puts "Roo v#{Roo::VERSION}" exit end end option :info do short '-i' long '--info <spreadsheetfile>' desc 'Show information about a spreadsheet file' action do puts '#' end end end # EOF
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
roo-1.10.3 | bin/roo |
roo-1.10.2 | bin/roo |
roo-1.10.1 | bin/roo |
roo-1.10.0 | bin/roo |
roo-1.9.6 | bin/roo |