rubyx/lib/sof/volotile.rb

12 lines
212 B
Ruby
Raw Normal View History

module Sof
class Volotile
@@mapping = {
2014-08-19 21:54:28 +02:00
Virtual::Block => [:method],
Virtual::MethodDefinition => [:current]
}
def self.attributes clazz
@@mapping[clazz] || []
end
end
end