Skip to content

Instantly share code, notes, and snippets.

@ntalbott
Created August 31, 2010 14:13
Show Gist options
  • Save ntalbott/559077 to your computer and use it in GitHub Desktop.
Save ntalbott/559077 to your computer and use it in GitHub Desktop.
$ irb
> require 'roadtrip'
=> true
> t = Roadtrip::Trip.new 'rdu', 'hilton downtown, nashville, tn', 2.75, 15
=> #<Roadtrip::Trip:0x00000100a23e28 @start="rdu", @destination="hilton downtown, nashville, tn", @cost_per_gallon=2.75, @mpg=15>
> t.distance
=> "528 mi"
> t.duration
=> "8 hours 23 mins"
> t.cost
=> 96.83706525172678
> t.round_trip_cost
=> 193.67413050345357
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment