class Lemurick::Matt

Public Instance Methods

coconut_oil() click to toggle source
# File lib/lemurick/lemurs/matt.rb, line 17
def coconut_oil
  "...with coconut oil"
end
quotes() click to toggle source
# File lib/lemurick/lemurs/matt.rb, line 7
def quotes
  [
    "Comparison is the thief of joy",
    "Truth is manners; manners are a fiction",
    "Ho ho ho; ha ha ha",
    "Wisdom in youth is an abomination",
    "Dubious",
  ].map{|string| string + coconut_oil}
end
speak() click to toggle source
# File lib/lemurick/lemurs/matt.rb, line 3
def speak
  quotes.sample
end