Class: Thingiverse::Tags

Inherits:
Object
  • Object
show all
Includes:
ActiveModel::Validations
Defined in:
lib/thingiverse/tags.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Tags

Returns a new instance of Tags.



7
8
9
10
11
# File 'lib/thingiverse/tags.rb', line 7

def initialize(attributes={})
  attributes.each do |name, value|
    send("#{name}=", value)
  end
end

Instance Attribute Details

#countObject

Returns the value of attribute count.



6
7
8
# File 'lib/thingiverse/tags.rb', line 6

def count
  @count
end

#nameObject

Returns the value of attribute name.



6
7
8
# File 'lib/thingiverse/tags.rb', line 6

def name
  @name
end

#urlObject

Returns the value of attribute url.



6
7
8
# File 'lib/thingiverse/tags.rb', line 6

def url
  @url
end

Instance Method Details

#attributesObject



13
14
15
16
17
18
19
# File 'lib/thingiverse/tags.rb', line 13

def attributes
  {
    :name => name,
    :url => url,
    :count => count
  }
end