Created
August 30, 2016 16:04
-
-
Save livmaria7891/a706b71837629c2dd9331ca574a7dd1d to your computer and use it in GitHub Desktop.
12days
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Xmas | |
def initialize(gifts) | |
end | |
def self.gifts(num) | |
@gifts = [ | |
["a partridge in a pear tree"], | |
["two turtle doves", 'and a partridge in a pear tree'], | |
['three french hens','two turtle doves','and a partridge in a pear tree'], | |
['four calling birds','three french hens','two turtle doves','and a partridge in a pear tree'], | |
["FIVE GOLDEN RINGS",'four calling birds','three french hens','two turtle doves','and a partridge in a pear tree'], | |
['six geese-a-laying','FIVE GOLDEN RINGS','four calling birds','three french hens','two turtle doves','and a partridge in a pear tree'], | |
['seven swans-a-swimming','six geese-a-laying','FIVE GOLDEN RINGS','four calling birds','three french hens','two turtle doves','and a partridge in a pear tree'], | |
['eight maids-a-milking','seven swans-a-swimming','six geese-a-laying','FIVE GOLDEN RINGS','four calling birds','three french hens','two turtle doves','and a partridge in a pear tree'], | |
['nine ladies dancing','eight maids-a-milking','seven swans-a-swimming','six geese-a-laying','FIVE GOLDEN RINGS','four calling birds','three french hens','two turtle doves','and a partridge in a pear tree'], | |
['ten lords-a-leaping','nine ladies dancing', 'eight maids-a-milking','seven swans-a-swimming','six geese-a-laying','FIVE GOLDEN RINGS','four calling birds','three french hens','two turtle doves','and a partridge in a pear tree'], | |
['eleven pipers piping','ten lords-a-leaping','nine ladies dancing', 'eight maids-a-milking','seven swans-a-swimming','six geese-a-laying','FIVE GOLDEN RINGS','four calling birds','three french hens','two turtle doves','and a partridge in a pear tree'], | |
['twelve drummers drumming','eleven pipers piping','ten lords-a-leaping','nine ladies dancing', 'eight maids-a-milking','seven swans-a-swimming','six geese-a-laying','FIVE GOLDEN RINGS','four calling birds','three french hens','two turtle doves','and a partridge in a pear tree'] | |
] | |
return @gifts[num] | |
end | |
def self.verse(num) | |
@ordinal = ['first','second','third','fourth','fifth','sixth','seventh','eighth','ninth','tenth','eleventh','twelfth'] | |
return verses = "On the #{@ordinal[num]} day of Christmas my true love gave to me\n" + self.gifts(num).join("\n") | |
end | |
##ugh | |
def self.sing | |
song = "" | |
12.times do |i| | |
if i != 11 | |
song += self.verse(i) + "\n\n" | |
else | |
song += self.verse(i) | |
end | |
end | |
return song | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment