aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorWojciech Wnętrzak <w.wnetrzak@gmail.com>2012-07-04 10:53:41 +0200
committerWojciech Wnętrzak <w.wnetrzak@gmail.com>2012-07-04 10:53:41 +0200
commitb70f4277db15ce7d4944a86f96e451cb59645456 (patch)
tree96a80b5df87af4640e65447bd600b5289b5f451d /railties/lib
parent62463d11b8ecb9fe5987776e58eee644c0ad96b2 (diff)
downloadrails-b70f4277db15ce7d4944a86f96e451cb59645456.tar.gz
rails-b70f4277db15ce7d4944a86f96e451cb59645456.tar.bz2
rails-b70f4277db15ce7d4944a86f96e451cb59645456.zip
There is only task for installing migrations when using engines
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/engine.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb
index 383c159d3d..f469c334a7 100644
--- a/railties/lib/rails/engine.rb
+++ b/railties/lib/rails/engine.rb
@@ -176,8 +176,7 @@ module Rails
#
# * routes: when you mount an Engine with <tt>mount(MyEngine::Engine => '/my_engine')</tt>,
# it's used as default :as option
- # * some of the rake tasks are based on engine name, e.g. <tt>my_engine:install:migrations</tt>,
- # <tt>my_engine:install:assets</tt>
+ # * rake task for installing migrations <tt>my_engine:install:migrations</tt>
#
# Engine name is set by default based on class name. For <tt>MyEngine::Engine</tt> it will be
# <tt>my_engine_engine</tt>. You can change it manually using the <tt>engine_name</tt> method: