class Card::Format::CsvFormat

Public Class Methods

view_caching?() click to toggle source
# File lib/card/format/csv_format.rb, line 11
def self.view_caching?
  # TODO: make view caching handle non-strings
  # (specifically stub_render)
  false
end

Public Instance Methods

mime_type() click to toggle source
# File lib/card/format/csv_format.rb, line 7
def mime_type
  "text/comma-separated-values"
end