lib/supa/commands/attribute.rb in supa-0.1.4 vs lib/supa/commands/attribute.rb in supa-0.2.0
- old
+ new
@@ -1,11 +1,9 @@
-require 'supa/command'
-
module Supa
module Commands
class Attribute < Supa::Command
def represent
- tree[name] = get_value
+ @tree[@name] = value
end
end
end
end