aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/http/mime_type.rb
Commit message (Expand)AuthorAgeFilesLines
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-15/+15
* applies new string literal convention in actionpack/libXavier Noria2016-08-061-14/+14
* speed up accept header parsing a bit.Aaron Patterson2016-01-281-8/+11
* convert AcceptList to a regular classAaron Patterson2016-01-281-20/+19
* remove == from AcceptItemAaron Patterson2016-01-271-6/+7
* remove useless private methodsAaron Patterson2016-01-271-13/+9
* change `@app_xml_idx` to an lvar and cache it on the stackAaron Patterson2016-01-271-16/+10
* change `@text_xml_idx` to an lvar and cache it on the stackAaron Patterson2016-01-271-13/+11
* stop caching mime types globallyAaron Patterson2016-01-221-2/+16
* Shrink a couple of deprecation warnings to one-linersMatthew Draper2015-12-061-18/+8
* Delete needless `require 'active_support/deprecation'`yui-knk2015-10-201-1/+0
* Use `Mime[:foo]` instead of `Mime::Type[:FOO]` for back compatJeremy Daer2015-10-061-38/+36
* Fix deprecated mime types via constantsamitkumarsuroliya2015-09-251-5/+5
* drop array allocations on Mime::Type#=~Aaron Patterson2015-09-211-3/+1
* remove another `blank?` callAaron Patterson2015-09-211-1/+1
* remove html_types setAaron Patterson2015-09-211-6/+2
* introduce an `All` mime typeAaron Patterson2015-09-211-0/+6
* remove `blank?` calls on `==`Aaron Patterson2015-09-211-1/+1
* change inheritance to compositionAaron Patterson2015-09-211-14/+24
* stop calling deprecated methodsAaron Patterson2015-09-211-2/+2
* deprecate accessing mime types via constantsAaron Patterson2015-09-211-5/+53
* cache the new type object on the stackAaron Patterson2015-09-211-2/+2
* Stop using deprecated `render :text` in testPrem Sichanugrist2015-07-171-1/+1
* added description instead of remove usage [ci skip]Julio Lopez2015-07-111-1/+1
* fix method name in mime type example. `Mime::Type.[]` doesn't exist. [ci skip]yuuji.yaginuma2015-02-231-1/+1
* Pass symbol as an argument instead of a blockErik Michaels-Ober2014-11-291-1/+1
* [ci skip]Correct variables in the sample codesuginoy2014-09-101-2/+2
* Replace trivial regexp with string or index, twice as fastKelley Reynolds2014-03-281-1/+1
* Move the null mime type to request.formatCarlos Antonio da Silva2013-12-231-1/+1
* remove nil in NullType#ref.Angelo capilleri2013-12-041-3/+1
* Convert Mime::NullType in a singletonGuillermo Iguaran2013-12-031-1/+4
* Remove deprecated cattr_* requiresGenadi Samokovarov2013-12-031-1/+1
* Fix undefined method `ref' for nil:NilClass for bad accept headersStephen Becker IV2013-06-191-1/+1
* Remove Mime::Type#verify_request? and Mime::Type.browser_generated_types were...kennyj2013-06-021-16/+0
* Return nil for Mime::NullType#refAndrew White2013-04-101-0/+4
* Reverts rendering behavior when format is unknownGrzegorz Świrski2013-04-101-1/+5
* Mark unused variables and make some style fixesAgis Anastasopoulos2013-04-081-2/+2
* return Mime::NullType if format is unknownAngelo Capilleri2012-12-221-1/+12
* implement to_a and to_ary so that the Array() call in template.rb willAaron Patterson2012-11-091-9/+14
* 1.9 hash syntax changes to docsAvnerCohen2012-10-311-2/+2
* depreacte unused Mime::Type#verify_request? and Mime::Type.browser_generated_...grosser2012-09-241-1/+6
* Fixed missing requireIlya Vorontsov2012-09-081-0/+1
* Refactor `Mime::Type`Aleksey Magusev2012-09-051-84/+93
* load active_support/core_ext/object/blank in active_support/railsXavier Noria2012-08-021-1/+0
* Prevent conflict between mime types and Object methodsMircea Pricop2012-07-061-1/+12
* add Mime.fetch so we can have default mime typesAaron Patterson2012-07-031-0/+5
* both string and sumbol will be interpolated as string no need to convert to_sganesh2012-06-111-3/+3
* Fix rdoc formatting in Mime::TypeMark Rushakoff2012-04-291-5/+5
* Fix example action dispatch in mime typeAlexey Vakhov2012-04-071-1/+1
* Added parsing of arbitrary media type parameters.Steve Klabnik2012-03-051-3/+3