1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

nodoc CSS::Generators [ci skip]

This commit is contained in:
Francesco Rodriguez 2012-10-07 13:47:34 -05:00
parent eecf14db66
commit 4e8ce2c528
2 changed files with 6 additions and 6 deletions

View file

@ -1,8 +1,8 @@
require "rails/generators/named_base"
module Css
module Generators
class AssetsGenerator < Rails::Generators::NamedBase
module Css # :nodoc:
module Generators # :nodoc:
class AssetsGenerator < Rails::Generators::NamedBase # :nodoc:
source_root File.expand_path("../templates", __FILE__)
def copy_stylesheet

View file

@ -1,8 +1,8 @@
require "rails/generators/named_base"
module Css
module Generators
class ScaffoldGenerator < Rails::Generators::NamedBase
module Css # :nodoc:
module Generators # :nodoc:
class ScaffoldGenerator < Rails::Generators::NamedBase # :nodoc:
# In order to allow the Sass generators to pick up the default Rails CSS and
# transform it, we leave it in a standard location for the CSS stylesheet
# generators to handle. For the simple, default case, just copy it over.