aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/http/mime_type.rb
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2016-12-24 13:26:29 +0900
committerAkira Matsuda <ronnie@dio.jp>2016-12-24 13:26:29 +0900
commit589da3c10c3ac6139eb3f8cbcdedbcfddcedaeee (patch)
tree4849d1f624a9cce56d910cc4e78d9a6b15f35244 /actionpack/lib/action_dispatch/http/mime_type.rb
parentcdb9d7f481a6b299cd53a0f647397da60d806a21 (diff)
downloadrails-589da3c10c3ac6139eb3f8cbcdedbcfddcedaeee.tar.gz
rails-589da3c10c3ac6139eb3f8cbcdedbcfddcedaeee.tar.bz2
rails-589da3c10c3ac6139eb3f8cbcdedbcfddcedaeee.zip
No need to nodoc private methods
Diffstat (limited to 'actionpack/lib/action_dispatch/http/mime_type.rb')
-rw-r--r--actionpack/lib/action_dispatch/http/mime_type.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/http/mime_type.rb b/actionpack/lib/action_dispatch/http/mime_type.rb
index 7754b74b1a..6b718e3682 100644
--- a/actionpack/lib/action_dispatch/http/mime_type.rb
+++ b/actionpack/lib/action_dispatch/http/mime_type.rb
@@ -297,7 +297,7 @@ module Mime
end
end
- def respond_to_missing?(method, include_private = false) #:nodoc:
+ def respond_to_missing?(method, include_private = false)
method.to_s.ends_with? "?"
end
end