Skip to content

Instantly share code, notes, and snippets.

@spanuska
Last active March 11, 2016 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spanuska/fbda57c277847c356de3 to your computer and use it in GitHub Desktop.
Save spanuska/fbda57c277847c356de3 to your computer and use it in GitHub Desktop.
class Member
attr_accessor :username, :streak_dates
def initialize(username)
@username = username
@streak_dates = []
end
def practice
self.streak_dates << Date.today unless self.streak_dates.include?(Date.today)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment