Skip to content

Instantly share code, notes, and snippets.

@spanuska
Last active March 11, 2016 20:54
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/faffcdbe3abed848e3d0 to your computer and use it in GitHub Desktop.
Save spanuska/faffcdbe3abed848e3d0 to your computer and use it in GitHub Desktop.
class Streak
attr_accessor :username, :streak_dates
def initialize
@streak_dates = []
end
def extend_streak
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