diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2012-06-26 01:30:15 -0700 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2012-06-26 01:30:15 -0700 |
commit | cfd21f01474ca9f0e1650fad321e91bd47547167 (patch) | |
tree | 1937557bc2d73cef7a676ddaa39bc01b739a26a5 | |
parent | a5ebf33b8fadb721186c23cb4605f33604c5a91b (diff) | |
parent | 88230b7cf77181c2088cce3314493caa9b3ac1fb (diff) | |
download | rails-cfd21f01474ca9f0e1650fad321e91bd47547167.tar.gz rails-cfd21f01474ca9f0e1650fad321e91bd47547167.tar.bz2 rails-cfd21f01474ca9f0e1650fad321e91bd47547167.zip |
Merge pull request #6859 from bogdan/deprecate_monkey_patch
AS::Callbacks: deprecate monkey patch code
l--------- | actionpack/action_pack_url_generator.rb | 1 | ||||
-rw-r--r-- | actionpack/lib/action_controller/caching/sweeping.rb | 6 | ||||
-rw-r--r-- | actionpack/test/controller/filters_test.rb | 12 | ||||
-rw-r--r-- | activesupport/CHANGELOG.md | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 3 |
5 files changed, 23 insertions, 1 deletions
diff --git a/actionpack/action_pack_url_generator.rb b/actionpack/action_pack_url_generator.rb new file mode 120000 index 0000000000..0bb3e85e86 --- /dev/null +++ b/actionpack/action_pack_url_generator.rb @@ -0,0 +1 @@ +/home/bogdan/makabu/my/benchmarks/action_pack_url_generator.rb
\ No newline at end of file diff --git a/actionpack/lib/action_controller/caching/sweeping.rb b/actionpack/lib/action_controller/caching/sweeping.rb index cc1fa23935..39da15e26a 100644 --- a/actionpack/lib/action_controller/caching/sweeping.rb +++ b/actionpack/lib/action_controller/caching/sweeping.rb @@ -72,6 +72,12 @@ module ActionController #:nodoc: self.controller = nil end + def around(controller) + before(controller) + yield + after(controller) + end + protected # gets the action cache path for the given options. def action_path_for(options) diff --git a/actionpack/test/controller/filters_test.rb b/actionpack/test/controller/filters_test.rb index ef7fbca675..b9cb93f0f4 100644 --- a/actionpack/test/controller/filters_test.rb +++ b/actionpack/test/controller/filters_test.rb @@ -326,6 +326,12 @@ class FilterTest < ActionController::TestCase controller.instance_variable_set(:"@after_ran", true) controller.class.execution_log << " after aroundfilter " if controller.respond_to? :execution_log end + + def around(controller) + before(controller) + yield + after(controller) + end end class AppendedAroundFilter @@ -336,6 +342,12 @@ class FilterTest < ActionController::TestCase def after(controller) controller.class.execution_log << " after appended aroundfilter " end + + def around(controller) + before(controller) + yield + after(controller) + end end class AuditController < ActionController::Base diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 00fcfe2001..87b956e3fc 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,5 +1,7 @@ ## Rails 4.0.0 (unreleased) ## +* AS::Callbacks: deprecate usage of filter object with `#before` and `#after` methods as `around` callback. *Bogdan Gusiev* + * Add `Time#prev_quarter' and 'Time#next_quarter' short-hands for months_ago(3) and months_since(3). *SungHee Kang* * Remove obsolete and unused `require_association` method from dependencies. *fxn* diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb index 0aa3efbb63..6cc875c69a 100644 --- a/activesupport/lib/active_support/callbacks.rb +++ b/activesupport/lib/active_support/callbacks.rb @@ -283,7 +283,8 @@ module ActiveSupport filter.singleton_class.class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1 def #{kind}(context, &block) filter(context, &block) end RUBY_EVAL - elsif filter.respond_to?(:before) && filter.respond_to?(:after) && kind == :around + elsif filter.respond_to?(:before) && filter.respond_to?(:after) && kind == :around && !filter.respond_to?(:around) + ActiveSupport::Deprecation.warn("Filter object with #before and #after methods is deprecated. Define #around method instead.") def filter.around(context) should_continue = before(context) yield if should_continue |