Created
June 10, 2010 22:05
-
-
Save avand/433711 to your computer and use it in GitHub Desktop.
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 characters
stylesheets = Dir.glob('public/**/*.css') | |
html = [] | |
stylesheets.each do |stylesheet| | |
stylesheet = stylesheet.gsub('public/stylesheets/', '') | |
if stylesheet =~ /html/ | |
html << stylesheet | |
else | |
html << stylesheet # also add to other mimetypes (iphone, etc.) - this is for common styles | |
end | |
end | |
ActionView::Helpers::AssetTagHelper.register_stylesheet_expansion :html => html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment