mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
fc12d224ae
Forward ActionMailbox install to install generator and hide the ActionMailbox install generator from generator list Updated the Action Mailbox install task description
6 lines
182 B
Ruby
6 lines
182 B
Ruby
# frozen_string_literal: true
|
|
|
|
desc "Installs Action Mailbox and its dependencies"
|
|
task "action_mailbox:install" do
|
|
Rails::Command.invoke :generate, ["action_mailbox:install"]
|
|
end
|