Take the 2008 Git User's Survey and help out! [ hide ]

public
Description: This contains various plugins for Feather
Clone URL: git://github.com/eldiablo/feather-plugins.git
Search Repo:
Click here to lend your support to: feather-plugins and make a donation at www.pledgie.com !
100644 12 lines (12 sloc) 0.229 kb
1
2
3
4
5
6
7
8
9
10
11
12
class Css < Application
  def custom
    css = ""
    Style.all.each do |style|
      css << style.content + "\n\n"
    end
    self.status = 200
    self.headers["Content-Type"] = "text/css"
    self.body = css
    css
  end
end