rubyx/lib/sof/volotile.rb
2014-10-03 14:33:06 +03:00

12 lines
208 B
Ruby

module Sof
class Volotile
@@mapping = { }
def self.attributes clazz
@@mapping[clazz] || []
end
def self.add clazz , attributes
@@mapping[clazz] = attributes
end
end
end