11 lines
357 B
Ruby
11 lines
357 B
Ruby
module Penchant
|
|
autoload :Gemfile, 'penchant/gemfile'
|
|
autoload :Repo, 'penchant/repo'
|
|
autoload :DotPenchant, 'penchant/dot_penchant'
|
|
autoload :Hooks, 'penchant/hooks'
|
|
autoload :Env, 'penchant/env'
|
|
autoload :FileProcessor, 'penchant/file_processor'
|
|
autoload :PenchantFile, 'penchant/penchant_file'
|
|
autoload :Defaults, 'penchant/defaults'
|
|
end
|