aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/active_model_helper.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-04-10 11:47:20 +0200
committerJosé Valim <jose.valim@gmail.com>2010-04-10 11:47:20 +0200
commitece157e9504e192dcc065909c86316d520992221 (patch)
tree1650e1693a479d67168305c340d9d1989910bdbf /actionpack/lib/action_view/helpers/active_model_helper.rb
parent26e05efdb6c29430c5d282870b1e236dff8465c9 (diff)
downloadrails-ece157e9504e192dcc065909c86316d520992221.tar.gz
rails-ece157e9504e192dcc065909c86316d520992221.tar.bz2
rails-ece157e9504e192dcc065909c86316d520992221.zip
Move verification to a plugin as well: http://github.com/rails/verification.git
Diffstat (limited to 'actionpack/lib/action_view/helpers/active_model_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/active_model_helper.rb4
1 files changed, 2 insertions, 2 deletions
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