Added Module#setup
Reported by TJ Holowaychuk | April 8th, 2009 @ 02:18 AM | in 1.0
module AbstractController
module Callbacks
def self.included(klass)
klass.class_eval do
include ActiveSupport::NewCallbacks
define_callbacks :process_action
extend ClassMethods
end
end
...
end
end
## NEW
module AbstractController
module Callbacks
setup do
include ActiveSupport::NewCallbacks
define_callbacks :process_action
end
...
end
end
Comments and changes to this ticket
-
TJ Holowaychuk July 10th, 2009 @ 09:11 PM
- State changed from new to resolved
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
Framework-agnostic core extensions.