class Stickers

Public Class Methods

new() click to toggle source
# File lib/stickers.rb, line 2
def initialize
        @stickers = []
end

Public Instance Methods

earned() click to toggle source
# File lib/stickers.rb, line 10
def earned
        @stickers
end
give(sticker) click to toggle source
# File lib/stickers.rb, line 6
def give(sticker)
        @stickers << sticker
end