module RSpec class NotifierGenerator < ::Rails::Generators::NamedBase source_root File.expand_path("../templates", __FILE__) def create_spec_file template 'notifier_spec.rb', File.join('spec/notifiers', class_path, "#{file_name}_notifier_spec.rb") end end end