aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2014-08-17 11:58:17 -0700
committerGodfrey Chan <godfreykfc@gmail.com>2014-08-17 11:58:17 -0700
commitb662273df3d546a1fdd2de79005fd802f0e12643 (patch)
tree52f1c46e2e8cf736929dcdd61b7eea4d0bc6ea16 /actionpack/lib
parent24226c51f075ed8d8e721cdefb6d2661c0a1f53a (diff)
downloadrails-b662273df3d546a1fdd2de79005fd802f0e12643.tar.gz
rails-b662273df3d546a1fdd2de79005fd802f0e12643.tar.bz2
rails-b662273df3d546a1fdd2de79005fd802f0e12643.zip
The gem is called 'responders'
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_controller/metal/mime_responds.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/mime_responds.rb b/actionpack/lib/action_controller/metal/mime_responds.rb
index f5565947aa..5c869d4ce2 100644
--- a/actionpack/lib/action_controller/metal/mime_responds.rb
+++ b/actionpack/lib/action_controller/metal/mime_responds.rb
@@ -8,7 +8,7 @@ module ActionController #:nodoc:
module ClassMethods
def respond_to(*)
raise NoMethodError, "The controller-level `respond_to' feature has " \
- "been extracted to the `responder` gem. Add it to your Gemfile to " \
+ "been extracted to the `responders` gem. Add it to your Gemfile to " \
"continue using this feature. Consult the Rails upgrade guide for " \
"details."
end
@@ -16,7 +16,7 @@ module ActionController #:nodoc:
def respond_with(*)
raise NoMethodError, "The `respond_with' feature has been extracted " \
- "to the `responder` gem. Add it to your Gemfile to continue using " \
+ "to the `responders` gem. Add it to your Gemfile to continue using " \
"this feature. Consult the Rails upgrade guide for details."
end