Class: Ramaze::Asset::CSS
- Defined in:
- lib/ramaze/asset/css.rb
Overview
File group for CSS files, these files are minified using CSSMin.
Instance Attribute Summary
Attributes inherited from FileGroup
Instance Method Summary collapse
-
#html_tag(gestalt, path) ⇒ Object
Builds a single <link> tag.
-
#minify(input) ⇒ String
Minifies the output and returns the result as a string.
Methods inherited from FileGroup
#build, #build_html, #extension, extension, #initialize
Constructor Details
This class inherits a constructor from Ramaze::Asset::FileGroup
Instance Method Details
#html_tag(gestalt, path) ⇒ Object
Builds a single <link> tag.
35 36 37 38 39 40 41 |
# File 'lib/ramaze/asset/css.rb', line 35 def html_tag(gestalt, path) gestalt.link( :rel => 'stylesheet', :href => path, :type => 'text/css' ) end |