提交 9a26d94d 编写于 作者: C Carlos Antonio da Silva

Merge pull request #11150 from jetthoughts/remove_depr_message_for_attribute_method_matcher

Remove deprecation warning from AttributeMethodsMatcher
......@@ -388,14 +388,6 @@ class AttributeMethodMatcher #:nodoc:
AttributeMethodMatch = Struct.new(:target, :attr_name, :method_name)
def initialize(options = {})
if options[:prefix] == '' || options[:suffix] == ''
message = "Specifying an empty prefix/suffix for an attribute method is no longer " \
"necessary. If the un-prefixed/suffixed version of the method has not been " \
"defined when `define_attribute_methods` is called, it will be defined " \
"automatically."
ActiveSupport::Deprecation.warn message
end
@prefix, @suffix = options.fetch(:prefix, ''), options.fetch(:suffix, '')
@regex = /^(?:#{Regexp.escape(@prefix)})(.*)(?:#{Regexp.escape(@suffix)})$/
@method_missing_target = "#{@prefix}attribute#{@suffix}"
......
......@@ -202,17 +202,6 @@ def foo
assert_equal 'bar', m.foo_test
end
test 'explicitly specifying an empty prefix/suffix is deprecated' do
klass = Class.new(ModelWithAttributes)
assert_deprecated { klass.attribute_method_suffix '' }
assert_deprecated { klass.attribute_method_prefix '' }
klass.define_attribute_methods(:foo)
assert_equal 'value of foo', klass.new.foo
end
test 'should not interfere with method_missing if the attr has a private/protected method' do
m = ModelWithAttributes2.new
m.attributes = { 'private_method' => '<3', 'protected_method' => 'O_o' }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册