meme_bot/app/workers/random_salutation.rb
2015-05-17 13:53:53 -05:00

16 lines
253 B
Ruby

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