2012-05-15 14:42:49 +00:00
|
|
|
module Impressionist
|
|
|
|
module Generators
|
|
|
|
class ImpressionistGenerator < Rails::Generators::Base
|
|
|
|
hook_for :orm
|
|
|
|
source_root File.expand_path('../templates', __FILE__)
|
|
|
|
|
|
|
|
def copy_config_file
|
|
|
|
template 'impression.rb', 'config/initializers/impression.rb'
|
|
|
|
end
|
2012-07-20 07:47:40 +00:00
|
|
|
|
2012-05-15 14:42:49 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|