Sha256: 52e01a42ce9fdd0fa618c4f7b2f014d930552e283b54b9cc55055ea2dc1c87ba

Contents?: true

Size: 1.25 KB

Versions: 32

Compression:

Stored size: 1.25 KB

Contents

# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License.  You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

class Solr::Field
  VALID_PARAMS = [:boost]
  attr_accessor :name
  attr_accessor :value
  attr_accessor :boost

  # Accepts an optional <tt>:boost</tt> parameter, used to boost the relevance of a particular field.
  def initialize(params)
    @boost = params[:boost]
    name_key = (params.keys - VALID_PARAMS).first
    @name, @value = name_key.to_s, params[name_key]
    # Convert any Time values into UTC/XML schema format (which Solr requires).
    @value = @value.respond_to?(:utc) ? @value.utc.xmlschema : @value.to_s
  end

  def to_xml
    e = Solr::XML::Element.new 'field'
    e.attributes['name'] = @name
    e.attributes['boost'] = @boost.to_s if @boost
    e.text = @value
    return e
  end

end

Version data entries

32 entries across 32 versions & 6 rubygems

Version Path
honkster-acts_as_solr-0.1.0 lib/solr/field.rb
honkster-acts_as_solr-0.2.0 lib/solr/field.rb
honkster-acts_as_solr-0.2.1 lib/solr/field.rb
honkster-acts_as_solr-0.2.2 lib/solr/field.rb
honkster-acts_as_solr-0.2.3 lib/solr/field.rb
honkster-acts_as_solr-0.2.4 lib/solr/field.rb
honkster-acts_as_solr-0.2.5 lib/solr/field.rb
honkster-acts_as_solr-0.3.4 lib/solr/field.rb
jbasdf-acts_as_solr-0.3.3 lib/solr/field.rb
jbasdf-jbasdf-acts_as_solr-0.4.0 lib/solr/field.rb
jbasdf-muck-solr-0.4.0 lib/solr/field.rb
jbasdf-muck-solr-0.4.1 lib/solr/field.rb
jbasdf-muck-solr-0.4.2 lib/solr/field.rb
acts_as_solr_reloaded-1.6.0 lib/solr/field.rb
muck-solr-3.0.1 lib/solr/field.rb
muck-solr-3.0.0 lib/solr/field.rb
acts_as_solr_reloaded-1.5.0 lib/solr/field.rb
acts_as_solr_reloaded-1.4.0 lib/solr/field.rb
muck-solr-0.4.7 lib/solr/field.rb
acts_as_solr_reloaded-1.3.0 lib/solr/field.rb