Class: Rails::Generators::MailboxGenerator
- Defined in:
- actionmailbox/lib/rails/generators/mailbox/mailbox_generator.rb
Instance Method Summary collapse
Methods inherited from NamedBase
Methods inherited from Base
base_root, class_option, default_source_root, desc, exit_on_failure?, hide!, hook_for, inherited, namespace, remove_hook_for, source_root
Methods included from Actions
#add_source, #environment, #gem, #gem_group, #generate, #git, #github, #initialize, #initializer, #lib, #rails_command, #rake, #rakefile, #readme, #route, #vendor
Constructor Details
This class inherits a constructor from Rails::Generators::NamedBase
Instance Method Details
#create_mailbox_file ⇒ Object
10 11 12 13 14 15 16 17 18 |
# 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 |