Skip to content

Instantly share code, notes, and snippets.

@evizitei
Created June 10, 2013 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evizitei/5752507 to your computer and use it in GitHub Desktop.
Save evizitei/5752507 to your computer and use it in GitHub Desktop.
class Car
def initialize(instruments)
@instruments = instruments
end
def mileage
@_mileage ||= @instruments.select(:odometer).calculate_value
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment