blob: c2c403b8f6e94eda218cfcc4e4018eb554e703f5 (
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
|
# frozen_string_literal: true
module Rails
module Generators
class MailboxGenerator < NamedBase
source_root File.expand_path("templates", __dir__)
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
|