class DogWalker::Dog
Public Instance Methods
walk_the_dog()
click to toggle source
# File lib/dog_walker.rb, line 6 def walk_the_dog dog_name = "" print "Enter your dogs name: " dog_name = gets.chomp.strip puts "Come on #{dog_name}, let's start walking!" end