aboutsummaryrefslogtreecommitdiffstats
path: root/lib/generators/rails/mailbox_generator.rb
blob: 7b4317348075c7d5c806283e395631c0f82cae5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

module Rails
  module Generators
    class MailboxGenerator < NamedBase
      source_root File.expand_path("templates", __dir__)

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

      check_class_collision suffix: "Mailbox"

      def create_mailbox_file
        template "mailbox.rb", File.join("app/mailboxes", class_path, "#{file_name}_mailbox.rb")

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

      hook_for :test_framework

      private
        def file_name # :doc:
          @_file_name ||= super.sub(/_mailbox\z/i, "")
        end

        def application_mailbox_file_name
          "app/mailboxes/application_mailbox.rb"
        end
    end
  end
end