class Jfs960Generator < Rails::Generator::Base def manifest record do |m| m.directory 'public/stylesheets' m.file '960.css', 'public/stylesheets/960.css' m.file 'reset.css', 'public/stylesheets/reset.css' m.file 'text.css', 'public/stylesheets/text.css' end end protected def banner <<-END Generates the CSS files for the 960 Grid System. USAGE: #{$0} #{spec.name} END end end