Generator looks in vendor/generators also.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3262 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2005-12-09 23:06:04 +00:00
parent a40b6fd034
commit 08309ba51a
2 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Generator looks in vendor/generators also. [Chad Fowler]
* Generator copies files in binary mode. #3156 [minimudboy@gmail.com]
* Add builtin/ to the gemspec. Closes #3047. [Nicholas Seckar, Sam Stephenson]

View File

@@ -98,8 +98,11 @@ module Rails
# 4. Builtins. Model, controller, mailer, scaffold.
def use_component_sources!
reset_sources
sources << PathSource.new(:app, "#{::RAILS_ROOT}/lib/generators") if defined? ::RAILS_ROOT
sources << PathSource.new(:plugins, "#{::RAILS_ROOT}/vendor/plugins/**/generators") if defined? ::RAILS_ROOT
if defined? ::RAILS_ROOT
sources << PathSource.new(:app, "#{::RAILS_ROOT}/lib/generators")
sources << PathSource.new(:app, "#{::RAILS_ROOT}/vendor/generators")
sources << PathSource.new(:plugins, "#{::RAILS_ROOT}/vendor/plugins/**/generators")
end
sources << PathSource.new(:user, "#{Dir.user_home}/.rails/generators")
sources << GemSource.new if Object.const_defined?(:Gem)
sources << PathSource.new(:builtin, "#{File.dirname(__FILE__)}/generators/components")