class Riddle::Configuration::Parser

Constants

INDEX_CLASSES
SOURCE_CLASSES

Public Class Methods

new(input) click to toggle source
# File lib/riddle/configuration/parser.rb, line 19
def initialize(input)
  @input   = input
end

Public Instance Methods

parse!() click to toggle source
# File lib/riddle/configuration/parser.rb, line 23
def parse!
  set_indexer
  set_searchd
  set_sources
  set_indices

  configuration
end