10 lines
232 B
Ruby
10 lines
232 B
Ruby
require 'yaml'
|
|
|
|
$:.unshift(File.dirname(__FILE__)) unless
|
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
|
|
|
module Teamocil
|
|
VERSION = '0.1.1'
|
|
autoload :Layout, "teamocil/layout"
|
|
end
|