• T
    allow reseting of request variants · e1fb3483
    Timo Schilling 提交于
    The current implementation of `variants=` don't allow a resetting to nil, wich is the default value.
    
    This results in the following code smell:
    ```ruby
    case request.user_agent
    when /iPhone/
      request.variants = :phone
    when /iPad/
      request.variants = :ipad
    end
    ```
    
    With the ability to reset variants to nil, it could be:
    ```ruby
    request.variants = case request.user_agent
    when /iPhone/
      :phone
    when /iPad/
      :ipad
    end
    ```
    e1fb3483
mime_negotiation.rb 5.0 KB