init and spike

This commit is contained in:
2015-05-16 21:47:18 -05:00
commit 200d95588b
7 changed files with 91 additions and 0 deletions

View File

@ -0,0 +1,7 @@
class Animations
def find string
"looking for a gif related to: #{string}"
end
end

View File

@ -0,0 +1,15 @@
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