Class: Foodie::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/foodie/cli.rb

Instance Method Summary collapse

Instance Method Details

#pluralizeObject

Here there’s the new method_option method we use which defines, well, a method option. It takes a hash which indicates the details of an option how they should be returned to our task.



18
19
20
# File 'lib/foodie/cli.rb', line 18

def pluralize
 puts Foodie::Food.pluralize(options[:word])
end

#portray(name) ⇒ Object



9
10
11
# File 'lib/foodie/cli.rb', line 9

def portray(name)
 puts Foodie::Food.portray(name)
end