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