lib/rubyvis/property.rb in rubyvis-0.1.1 vs lib/rubyvis/property.rb in rubyvis-0.1.2
- old
+ new
@@ -1,11 +1,12 @@
module Rubyvis
class Property
- attr_accessor :name, :id, :value, :_type
+ attr_accessor :name, :id, :value, :_type, :fixed
def initialize(opts=Hash.new)
@id=opts[:id]
@name=opts[:name]
@value=opts[:value]
@_type=opts[:_type]
+ @fixed=opts[:fixed]
end
end
-end
\ No newline at end of file
+end