remove volt

This commit is contained in:
Torsten Ruger
2015-07-21 20:25:57 +03:00
parent 5c2f423f58
commit bd882b7d2e
20 changed files with 0 additions and 801 deletions

View File

@ -1,13 +0,0 @@
# represent a block and hold the actual instance (as transient)
class BlockModel < Volt::Model
field :name
attr_accessor :block
def initialize(b)
super()
@block = b
self.name = b.nil? ? 'undefined' : b.name
end
end

View File

@ -1,13 +0,0 @@
# represent an instruction and hold the actual instance (as transient)
class InstructionModel < Volt::Model
field :name
attr_accessor :instruction
def initialize(i)
super()
@instruction = i
self.name = i.class.name
end
end