Sha256: e45ad8aaf37bf97809c275df1516a8d4f2bbabe143c17dc918234d382fdb2552
Contents?: true
Size: 559 Bytes
Versions: 47
Compression:
Stored size: 559 Bytes
Contents
module Rails module Generators class MailerGenerator < NamedBase source_root File.expand_path("../templates", __FILE__) argument :actions, type: :array, default: [], banner: "method method" check_class_collision def create_mailer_file template "mailer.rb", File.join('app/mailers', class_path, "#{file_name}.rb") if self.behavior == :invoke template "application_mailer.rb", 'app/mailers/application_mailer.rb' end end hook_for :template_engine, :test_framework end end end
Version data entries
47 entries across 46 versions & 8 rubygems