module Shookach

Constants

VERSION

Public Class Methods

index(options = {}) click to toggle source
# File lib/shookach.rb, line 6
def self.index(options = {})
  @options = default_configs.merge(options)

  Shookach::Indexer.new(@options[:library_path], @options[:output_path]).call
end

Private Class Methods

default_configs() click to toggle source
# File lib/shookach.rb, line 18
def self.default_configs
  {
    library_path: './public/input/',
    output_path: './public/output/'
  }
end