Consistent hashing of the Sprite importer object

This commit is contained in:
Chris Eppstein 2011-04-20 19:27:53 -07:00
parent 134160885c
commit 9cafbc642c

View File

@ -49,5 +49,14 @@ module Compass
def to_s def to_s
"" ""
end end
def hash
self.class.name.hash
end
def eql?(other)
other.class == self.class
end
end end
end end