11 lines
176 B
Ruby
11 lines
176 B
Ruby
module Sof
|
|
class Volotile
|
|
@@mapping = {
|
|
Virtual::MethodDefinition => [:current]
|
|
}
|
|
def self.attributes clazz
|
|
@@mapping[clazz] || []
|
|
end
|
|
end
|
|
end
|