meme_bot/app/workers/random_salutation.rb

24 lines
374 B
Ruby
Raw Normal View History

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