Created
June 10, 2013 19:24
Revisions
-
jeremyruppel created this gist
Jun 10, 2013 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ module AssetHelper ## # Renders a stylesheet asset inline. def inline_stylesheet( name ) content_tag :style do sprockets[ "#{name}.css" ].to_s end end ## # Renders a javascript asset inline. def inline_javascript( name ) content_tag :script do sprockets[ "#{name}.js" ].to_s end end end This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ !!! %html{ html_attrs } %head = inline_stylesheet 'application' = inline_javascript 'application' / ...