diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-03-19 20:46:42 -0300 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-03-19 20:46:42 -0300 |
commit | bdf1a2e7b9096889321f7653a0ccca628a089e2f (patch) | |
tree | 5413a9bf4731618e6be23f68974ae1c9ce61e78e /actionpack | |
parent | c08e6e0031f3e3d3336505a38885a8199719dc73 (diff) | |
download | rails-bdf1a2e7b9096889321f7653a0ccca628a089e2f.tar.gz rails-bdf1a2e7b9096889321f7653a0ccca628a089e2f.tar.bz2 rails-bdf1a2e7b9096889321f7653a0ccca628a089e2f.zip |
Remove mentions of "app" from http request docs [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/http/request.rb | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/actionpack/lib/action_dispatch/http/request.rb b/actionpack/lib/action_dispatch/http/request.rb index aff2172788..ebd87c40b5 100644 --- a/actionpack/lib/action_dispatch/http/request.rb +++ b/actionpack/lib/action_dispatch/http/request.rb @@ -158,29 +158,27 @@ module ActionDispatch # Returns the +String+ full path including params of the last URL requested. # - # app.get "/articles" - # app.request.fullpath # => "/articles" + # # get "/articles" + # request.fullpath # => "/articles" # - # app.get "/articles?page=2" - # app.request.fullpath # => "/articles?page=2" + # # get "/articles?page=2" + # request.fullpath # => "/articles?page=2" def fullpath @fullpath ||= super end - # Returns the original request URL as a +String+ + # Returns the original request URL as a +String+. # - # app.get "/articles?page=2" - # app.request.original_url - # # => "http://www.example.com/articles?page=2" + # # get "/articles?page=2" + # request.original_url # => "http://www.example.com/articles?page=2" def original_url base_url + original_fullpath end - # The +String+ MIME type of the request + # The +String+ MIME type of the request. # - # app.get "/articles" - # app.request.media_type - # # => "application/x-www-form-urlencoded" + # # get "/articles" + # request.media_type # => "application/x-www-form-urlencoded" def media_type content_mime_type.to_s end |