rubyx/lib/sof/volotile.rb
2014-08-28 08:10:33 +03:00

15 lines
290 B
Ruby

module Sof
class Volotile
@@mapping = {
Virtual::Block => [:method],
Virtual::CompiledMethod => [:current]
}
def self.attributes clazz
@@mapping[clazz] || []
end
def self.add clazz , attributes
@@mapping[clazz] = attributes
end
end
end