draper/lib/generators/rspec/decorator_generator.rb

12 lines
325 B
Ruby
Raw Normal View History

2012-04-28 19:26:57 +00:00
module Rspec
module Generators
class DecoratorGenerator < ::Rails::Generators::NamedBase
source_root File.expand_path("templates", __dir__)
2012-04-28 19:26:57 +00:00
def create_spec_file
template 'decorator_spec.rb', File.join('spec/decorators', class_path, "#{singular_name}_decorator_spec.rb")
end
2012-04-28 19:26:57 +00:00
end
end
end