Sha256: 205ae989ac27e6c5e1f1c6aeb8f52b059f32cdf3f4da78d512109e51bcb578cf

Contents?: true

Size: 259 Bytes

Versions: 24

Compression:

Stored size: 259 Bytes

Contents

module Rubyvis
  class Property
    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

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
rubyvis-0.1.5 lib/rubyvis/property.rb
rubyvis-0.1.4 lib/rubyvis/property.rb
rubyvis-0.1.3 lib/rubyvis/property.rb
rubyvis-0.1.2 lib/rubyvis/property.rb