1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/hamlit/identity.rb
2015-11-28 22:20:38 +09:00

12 lines
175 B
Ruby

module Hamlit
class Identity
def initialize
@unique_id = 0
end
def generate
@unique_id += 1
"_hamlit_compiler#{@unique_id}"
end
end
end