From ece157e9504e192dcc065909c86316d520992221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Sat, 10 Apr 2010 11:47:20 +0200 Subject: Move verification to a plugin as well: http://github.com/rails/verification.git --- actionpack/lib/action_view/helpers/active_model_helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actionpack/lib/action_view/helpers') diff --git a/actionpack/lib/action_view/helpers/active_model_helper.rb b/actionpack/lib/action_view/helpers/active_model_helper.rb index 92530246a6..a7650c0050 100644 --- a/actionpack/lib/action_view/helpers/active_model_helper.rb +++ b/actionpack/lib/action_view/helpers/active_model_helper.rb @@ -16,7 +16,7 @@ module ActionView %w(input form error_messages_for error_message_on).each do |method| class_eval <<-RUBY, __FILE__, __LINE__ + 1 def #{method}(*args) - ActiveSupport::Deprecation.warn "#{method} was removed from Rails and is now available as plugin. " << + ActiveSupport::Deprecation.warn "#{method} was removed from Rails and is now available as a plugin. " << "Please install it with `rails plugin install git://github.com/rails/dynamic_form.git`.", caller end RUBY @@ -27,7 +27,7 @@ module ActionView %w(error_messages error_message_on).each do |method| class_eval <<-RUBY, __FILE__, __LINE__ + 1 def #{method}(*args) - ActiveSupport::Deprecation.warn "f.#{method} was removed from Rails and is now available as plugin. " << + ActiveSupport::Deprecation.warn "f.#{method} was removed from Rails and is now available as a plugin. " << "Please install it with `rails plugin install git://github.com/rails/dynamic_form.git`.", caller end RUBY -- cgit v1.2.3