diff options
Diffstat (limited to 'blatube.rb')
-rw-r--r-- | blatube.rb | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,10 +23,10 @@ args = ARGV.dup options = OptionParser.new do |opts| opts.banner = "Usage: #{File.basename($0)} -h" - opts.on( '-s', '--status LINE', 'Get the current status of a tube line.' ) {|l| @line = l } + opts.on( '-s', '--status [LINE]', 'Get the current status of a tube line.' ) {|l| @line = l || 'summary' } opts.on( '-f', '--from-station STATION', 'Find route from this station.' ) {|f| @from_station = f } opts.on( '-t', '--to-station STATION', 'Find route to this station.' ) {|t| @to_station = t } - opts.on( '-w', '--weight WEIGHT', 'Shortest route using either distance, peak_time, off_peak_time or unimpeded_time.' ) {|w| @weight = w if WEIGHTS.include? w || 'peak_time' } + opts.on( '-w', '--weight WEIGHT', 'Shortest route using either distance, peak_time, off_peak_time or unimpeded_time.' ) {|w| @weight = WEIGHTS.include?(w) ? w : 'peak_time' } opts.on( '-c', '--change-time TIME', 'Your expected average change time in minutes.' ) {|c| @change_time = c.to_f.round(2) } opts.on( '-C', '--colour', 'Enable line colours in the output.' ) { @colour = true } opts.on( '-d', '--debug', 'Display debug info.' ) { debug = true } |