move from known attributes to volotile (white to blacklist)

This commit is contained in:
Torsten Ruger
2014-08-14 20:04:15 +03:00
parent 6b19b915a1
commit 2f5ed43073
4 changed files with 13 additions and 24 deletions

10
lib/sof/volotile.rb Normal file
View File

@@ -0,0 +1,10 @@
module Sof
class Volotile
@@mapping = {
Virtual::MethodDefinition => []
}
def self.attributes clazz
@@mapping[clazz] || []
end
end
end