mirror of
https://github.com/github/rails.git
synced 2026-01-28 15:58:03 -05:00
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:
@@ -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]
|
||||
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user