Encapsulates the notion of a mime type. Can be used at render time, for example, with:
class PostsController < ActionController::Base def show @post = Post.find(params[:id]) respond_to do |format| format.html format.ics { render :text => post.to_ics, :mime_type => Mime::Type["text/calendar"] } format.xml { render :xml => @people.to_xml } end end end
| Classes | |
|---|---|
| AcceptItem | A simple helper class used in parsing the accept header |
| Public Methods | |
|---|---|
| == | |
| === | |
| lookup | |
| lookup_ |
|
| new | |
| parse | |
| register | |
| register_ |
Registers an alias that’s not used on mime type lookup, but can be referenced directly. Especially useful for rendering different HTML versions depending on the user agent, like an iPhone. |
| to_ |
|
| to_ |
|
| to_ |
|
| Private Methods | |
|---|---|
| method_ |
|
<code/>and<pre/>for code samples.