Class: SDM::Tag

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name: nil, value: nil) ⇒ Tag

Returns a new instance of Tag.



13023
13024
13025
13026
13027
13028
13029
# File 'lib/models/porcelain.rb', line 13023

def initialize(
  name: nil,
  value: nil
)
  @name = name == nil ? "" : name
  @value = value == nil ? "" : value
end

Instance Attribute Details

#nameObject

The name or key of this tag. Each name can only refer to one value on a tagged entity.



13019
13020
13021
# File 'lib/models/porcelain.rb', line 13019

def name
  @name
end

#valueObject

The value of this tag.



13021
13022
13023
# File 'lib/models/porcelain.rb', line 13021

def value
  @value
end

Instance Method Details

#to_json(options = {}) ⇒ Object



13031
13032
13033
13034
13035
13036
13037
# File 'lib/models/porcelain.rb', line 13031

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end