Skip to content

Instantly share code, notes, and snippets.

@cezarykaras
Last active October 19, 2017 09:45
class DistancePresenter
def initialize(unit)
@unit = unit
end
def to_s
"The distance between Warsaw and Paris is #{distance} #{unit}"
end
private
attr_reader :unit
def distance
if unit == 'km'
1591
else
998
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment