method
action
v7.1.3.4 -
Show latest stable
- Class:
ActiveSupport::ActionableError::ClassMethods
action(name, &block)public
Defines an action that can resolve the error.
class PendingMigrationError < MigrationError include ActiveSupport::ActionableError action "Run pending migrations" do ActiveRecord::Tasks::DatabaseTasks.migrate end end