tongueroo/thor_template

View on GitHub
lib/thor_template.rb

Summary

Maintainability
A
0 mins
Test Coverage
$:.unshift(File.expand_path("../", __FILE__))
require "thor/vcr" if ENV['VCR'] == '1'
require "thor_template/version"

module ThorTemplate
  autoload :Help, 'thor_template/help'
  autoload :Command, 'thor_template/command'
  autoload :Version, 'thor_template/version'
  autoload :Generator, 'thor_template/generator'
  autoload :Renamer, 'thor_template/renamer'
end