Class: Riddle::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/riddle/configuration.rb,
lib/riddle/configuration/index.rb,
lib/riddle/configuration/source.rb,
lib/riddle/configuration/indexer.rb,
lib/riddle/configuration/searchd.rb,
lib/riddle/configuration/section.rb,
lib/riddle/configuration/sql_source.rb,
lib/riddle/configuration/xml_source.rb,
lib/riddle/configuration/remote_index.rb,
lib/riddle/0.9.9/configuration/searchd.rb,
lib/riddle/configuration/index_settings.rb,
lib/riddle/configuration/realtime_index.rb,
lib/riddle/configuration/distributed_index.rb

Defined Under Namespace

Modules: IndexSettings Classes: ConfigurationError, DistributedIndex, Index, Indexer, Parser, RealtimeIndex, RemoteIndex, SQLSource, Searchd, Section, Source, XMLSource

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



28
29
30
31
32
33
# File 'lib/riddle/configuration.rb', line 28

def initialize
  @indexer = Riddle::Configuration::Indexer.new
  @searchd = Riddle::Configuration::Searchd.new
  @indices = []
  @sources = []
end

Instance Attribute Details

#indexerObject

Returns the value of attribute indexer.



22
23
24
# File 'lib/riddle/configuration.rb', line 22

def indexer
  @indexer
end

#indicesObject (readonly)

Returns the value of attribute indices.



21
22
23
# File 'lib/riddle/configuration.rb', line 21

def indices
  @indices
end

#searchdObject (readonly)

Returns the value of attribute searchd.



21
22
23
# File 'lib/riddle/configuration.rb', line 21

def searchd
  @searchd
end

#sourcesObject (readonly)

Returns the value of attribute sources.



21
22
23
# File 'lib/riddle/configuration.rb', line 21

def sources
  @sources
end

Class Method Details

.parse!(input) ⇒ Object



24
25
26
# File 'lib/riddle/configuration.rb', line 24

def self.parse!(input)
  Riddle::Configuration::Parser.new(input).parse!
end

Instance Method Details

#renderObject



35
36
37
38
39
40
41
# File 'lib/riddle/configuration.rb', line 35

def render
  (
    [@indexer.render, @searchd.render] +
    @sources.collect { |source| source.render } +
    @indices.collect { |index| index.render }
  ).join("\n")
end