Skip to content

Instantly share code, notes, and snippets.

View jerhinesmith's full-sized avatar

Justin Rhinesmith jerhinesmith

View GitHub Profile
@jerhinesmith
jerhinesmith / gist:1005423
Created June 2, 2011 21:55
Simple dirty? flag
class Percent
attr_reader :finished
attr_accessor :dirty
def finished=(value)
self.dirty = true
@finished = value
end
def dirty?