1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_dispatch/http
Travis Pew 237272e049 Fix ActionDispatch::Request method explanations
The methods, "post?", "put?", "head?", etc. contain an incorrect
explanation. They state that they are equivalent to request_method ==
:type, but this is not accurate because the methods convert the string
to a symbol. They are actually equivalent to:
  request_method_symbol == :type
2011-11-28 15:46:09 -05:00
..
cache.rb Fix previous commit by allowing a proc to be given as response_body. This is deprecated and is going to be removed in future releases. 2011-05-10 16:53:57 +02:00
filter_parameters.rb More performance optimizations. 2011-05-03 01:37:01 +02:00
headers.rb Unneeded require memoizable 2011-11-12 23:15:54 +09:00
mime_negotiation.rb Check Accept and Content-Type headers before evaluating them in xhr requests. Closes #2119 2011-07-19 22:05:16 +02:00
mime_type.rb Implement Mime::Type#respond_to? (consistently with #method_missing) 2011-09-25 13:03:01 +01:00
mime_types.rb Fix test to use Mime::Zip 2011-06-28 16:51:19 +05:30
parameter_filter.rb Extract ParameterFilter class from FilterParameters mixin 2010-07-19 13:44:43 -07:00
parameters.rb Reset symbolized path parameters when a test request is recycled [#5437 state:resolved] 2010-08-24 11:24:32 -03:00
rack_cache.rb Dump and load rack-cache stuff. 2011-05-17 17:33:17 -04:00
request.rb Fix ActionDispatch::Request method explanations 2011-11-28 15:46:09 -05:00
response.rb removed deprecated methods, and related tests, from ActionPack 2011-05-24 23:38:59 +02:00
upload.rb Refactor ActionDispatch::Http::UploadedFile 2011-08-28 16:16:22 +02:00
url.rb Fix trouble using :subdomain in development environment when using numeric addresses. 2011-11-08 07:52:35 -06:00