Sha256: 34be7694c57038bb0e473b8de9a6eec762e36d6f22391d9a8eba535573b5f7a0

Contents?: true

Size: 240 Bytes

Versions: 29

Compression:

Stored size: 240 Bytes

Contents

module FbGraph
  class Property
    include Comparison

    attr_accessor :name, :text, :href

    def initialize(attriutes = {})
      @name = attriutes[:name]
      @text = attriutes[:text]
      @href = attriutes[:href]
    end
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
fb_graph-2.0.0 lib/fb_graph/property.rb
fb_graph-2.0.0.beta lib/fb_graph/property.rb
fb_graph-2.0.0.alpha lib/fb_graph/property.rb
fb_graph-1.9.5 lib/fb_graph/property.rb
fb_graph-1.9.4 lib/fb_graph/property.rb
fb_graph-1.9.3 lib/fb_graph/property.rb
fb_graph-1.9.2 lib/fb_graph/property.rb
fb_graph-1.9.1 lib/fb_graph/property.rb
fb_graph-1.9.0 lib/fb_graph/property.rb