aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2010-10-13 23:14:15 +0300
committerJosé Valim <jose.valim@gmail.com>2010-10-14 07:46:12 +0200
commita2c52f100446ab328cbde0e505216a99c602bc57 (patch)
tree778a47ce5c0cd5b50aa5ca86735de52bc440aa49 /railties/lib
parent43215de208a6feabdbc5f4ec29551beef4f89885 (diff)
downloadrails-a2c52f100446ab328cbde0e505216a99c602bc57.tar.gz
rails-a2c52f100446ab328cbde0e505216a99c602bc57.tar.bz2
rails-a2c52f100446ab328cbde0e505216a99c602bc57.zip
Update documentation for new tasks
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/engine.rb15
1 files changed, 8 insertions, 7 deletions
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb
index 2ff28043c9..7f0d96a2ff 100644
--- a/railties/lib/rails/engine.rb
+++ b/railties/lib/rails/engine.rb
@@ -189,17 +189,14 @@ module Rails
# served by default. You should choose one of the two following strategies:
#
# * enable serving static files by setting config.serve_static_assets to true
- # * symlink engines' public directories in application's public directory by running
- # `rake ENGINE_NAME:install:assets`, where ENGINE_NAME is usually my_engine for the
- # examples above
+ # * copy engine's public files to application's public folder with rake ENGINE_NAME:install:assets, for example
+ # rake my_engine:install:assets
#
# == Engine name
#
- # There are some places where engine's name is used.
- #
+ # There are some places where engine's name is used:
# * routes: when you mount engine with mount(MyEngine::Engine => '/my_engine'), it's used as default :as option
- #
- # * rake tasks: engines have a few rake tasks. They are usually under my_engine namespace.
+ # * some of the rake tasks are based on engine name, e.g. my_engine:install:migrations, my_engine:install:assets
#
# Engine name is set by default based on class name. For MyEngine::Engine it will be my_engine_engine.
# You can change it manually it manually using engine_name method:
@@ -317,6 +314,10 @@ module Rails
#
# rake ENGINE_NAME:install:migrations
#
+ # Note that some of the migrations may be skipped if migration with the same name already exists
+ # in application. In such situation you must decide whether to leave that migration or rename the
+ # migration in application and rerun copying migrations.
+ #
# If your engine has migrations, you may also want to prepare data for the database in
# seeds.rb file. You can load that data using load_seed method, e.g.
#