Sha256: fb4bcc30fd97b4ef126f343afa65e473e0d805087a3adc68191ef399614e58af

Contents?: true

Size: 723 Bytes

Versions: 1

Compression:

Stored size: 723 Bytes

Contents

$LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__))

require 'table_fu'
require 'yaml'

autoload :Sinatra,   'sinatra/base'
autoload :Thin,      'thin'
autoload :ERB,       'erb'
autoload :FasterCSV, 'FasterCSV'
autoload :Curb,      'curb'
autoload :RDiscount, 'rdiscount'

module TableSetter
  # autoload internals
  autoload :App,     'table_setter/app'
  autoload :Command, 'table_setter/command'
  autoload :Table,   'table_setter/table'

  ROOT = File.expand_path(File.dirname(__FILE__) + "/..") unless defined? ROOT

  class << self
    attr_reader :config_path

    def configure(path)
      @config_path = File.expand_path(path)
    end

    def table_path
      @config_path + "/tables/"
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
table_setter-0.2.3 lib/table_setter.rb