class Fancygem::Speech

Public Class Methods

say_something_fancy() click to toggle source
# File lib/fancygem/speech.rb, line 3
def self.say_something_fancy
  "Fancy-schmancy!"
end
say_something_that_might_be_fancy() click to toggle source
# File lib/fancygem/speech.rb, line 7
def self.say_something_that_might_be_fancy
  [
    "Fancy-schmancy!",
    "This is not fancy!",
    "Look how fancy",
    "Classy",
    "Whatever..."
  ].sample
end