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