method

create_mailbox_file

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: MailboxGenerator
create_mailbox_file() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionmailbox/lib/rails/generators/mailbox/mailbox_generator.rb, line 10
      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
Register or log in to add new notes.