class Beach
Attributes
best_time[RW]
location[RW]
name[RW]
Public Class Methods
new(name, location, best_time)
click to toggle source
# File lib/travel/beaches.rb, line 4 def initialize(name, location, best_time) @name = name @location = location @best_time = best_time end