method

stylesheets

stylesheets()
public

No documentation available.

# File railties/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb, line 116
    def stylesheets
      if mountable?
        copy_file "rails/stylesheets.css",
                  "app/assets/stylesheets/#{name}/application.css"
      elsif full?
        empty_directory_with_keep_file "app/assets/stylesheets/#{name}"
      end
    end