Sha256: a0def5b9a2c0d5c560fe188b667bbd591a6a9b0ec2edcddc00dab17079f376f5

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true

module Quails
  module Generators
    class MailerGenerator < NamedBase
      source_root File.expand_path("templates", __dir__)

      argument :actions, type: :array, default: [], banner: "method method"

      check_class_collision suffix: "Mailer"

      def create_mailer_file
        template "mailer.rb", File.join("app/mailers", class_path, "#{file_name}_mailer.rb")

        in_root do
          if behavior == :invoke && !File.exist?(application_mailer_file_name)
            template "application_mailer.rb", application_mailer_file_name
          end
        end
      end

      hook_for :template_engine, :test_framework

      private
        def file_name # :doc:
          @_file_name ||= super.gsub(/_mailer/i, "")
        end

        def application_mailer_file_name
          @_application_mailer_file_name ||= if mountable_engine?
            "app/mailers/#{namespaced_path}/application_mailer.rb"
          else
            "app/mailers/application_mailer.rb"
          end
        end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-on-quails-0.1.0 actionmailer/lib/rails/generators/mailer/mailer_generator.rb