mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Include tasks from vendor/plugins/*/tasks in the Rakefile #2545 [Rick Olson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2697 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
22d9bad8a0
commit
3b33a6f336
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
*SVN*
|
||||
|
||||
* Include tasks from vendor/plugins/*/tasks in the Rakefile #2545 [Rick Olson]
|
||||
|
||||
|
||||
*0.14.1* (October 19th, 2005)
|
||||
|
||||
* Don't clean RAILS_ROOT on windows
|
||||
|
|
|
@ -4,4 +4,5 @@ $VERBOSE = nil
|
|||
Dir["#{File.dirname(__FILE__)}/*.rake"].each { |ext| load ext }
|
||||
|
||||
# Load any custom rakefile extensions
|
||||
Dir["./lib/tasks/**/*.rake"].each { |ext| load ext }
|
||||
Dir["./lib/tasks/**/*.rake"].each { |ext| load ext }
|
||||
Dir["./vendor/plugins/*/tasks/**/*.rake"].each { |ext| load ext }
|
Loading…
Reference in a new issue