diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-04-25 13:56:37 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-04-25 13:56:37 -0500 |
commit | b69da86ea545b342036fb37a472ec5abefaf3bd5 (patch) | |
tree | 91590afc783500eb48700fe93f1cc66bf493fcf2 /actionpack/lib/action_dispatch/http | |
parent | 044794fc9e1235981d20172b96f3b34b044ad19c (diff) | |
download | rails-b69da86ea545b342036fb37a472ec5abefaf3bd5.tar.gz rails-b69da86ea545b342036fb37a472ec5abefaf3bd5.tar.bz2 rails-b69da86ea545b342036fb37a472ec5abefaf3bd5.zip |
Remove vendored version of Rack
Diffstat (limited to 'actionpack/lib/action_dispatch/http')
-rwxr-xr-x | actionpack/lib/action_dispatch/http/request.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/http/request.rb b/actionpack/lib/action_dispatch/http/request.rb index b8c547b696..ab654b9a50 100755 --- a/actionpack/lib/action_dispatch/http/request.rb +++ b/actionpack/lib/action_dispatch/http/request.rb @@ -93,7 +93,11 @@ module ActionDispatch end end end - + + def media_type + content_type.to_s + end + # Returns the accepted MIME type for the request. def accepts @accepts ||= begin |