Class: RSolr::Xml::Field

Inherits:
Object
  • Object
show all
Defined in:
lib/rsolr/xml.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attrs, value) ⇒ Field

“attrs” must be a hash “value” should be something that responds to #_to_s



61
62
63
64
# File 'lib/rsolr/xml.rb', line 61

def initialize(attrs, value)
  @attrs = attrs
  @value = value
end

Instance Attribute Details

#attrsObject

“attrs” is a hash for setting the “doc” xml attributes “value” is the text value for the node



57
58
59
# File 'lib/rsolr/xml.rb', line 57

def attrs
  @attrs
end

#valueObject

“attrs” is a hash for setting the “doc” xml attributes “value” is the text value for the node



57
58
59
# File 'lib/rsolr/xml.rb', line 57

def value
  @value
end

Instance Method Details

#nameObject

the value of the “name” attribute



67
68
69
# File 'lib/rsolr/xml.rb', line 67

def name
  @attrs[:name]
end