File: property.rb

package info (click to toggle)
ruby-rubyvis 0.6.1%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,808 kB
  • ctags: 679
  • sloc: ruby: 11,114; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
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