decko-commons/decko

View on GitHub
mod/format/lib/card/format/scss_format.rb

Summary

Maintainability
A
0 mins
Test Coverage
C
75%
# -*- encoding : utf-8 -*-

class Card
  class Format
    # Scss format
    class ScssFormat < CssFormat
      register :scss

      def mime_type
        "text/x-scss"
      end

      def self.view_caching?
        false
      end
    end
  end
end