meme_bot/app/workers/random_salutation.rb

16 lines
253 B
Ruby
Raw Normal View History

2015-05-16 21:47:18 -05:00
class RandomSalutation
def short
'Hi there!'
end
def medium
"Well hello! So nice to see you here."
end
def long
"My, what a wonderful day. Wouldn't you agree? I mean, it's even better now that you are here! Amirite?"
end
end