Module: Rails::Generator::Lookup::ClassMethods
- Defined in:
- lib/rails_generator/lookup.rb
Instance Method Summary collapse
-
#append_sources(*args) ⇒ Object
Add a source to the end of the list.
-
#instance(generator_name, args = [], runtime_options = {}) ⇒ Object
Convenience method to lookup and instantiate a generator.
-
#lookup(generator_name) ⇒ Object
Lookup knows how to find generators’ Specs from a list of Sources.
-
#prepend_sources(*args) ⇒ Object
Add a source to the beginning of the list.
-
#reset_sources ⇒ Object
Reset the source list.
-
#sources ⇒ Object
The list of sources where we look, in order, for generators.
-
#use_application_sources! ⇒ Object
Use application generators (app, ?).
-
#use_component_sources! ⇒ Object
Use component generators (model, controller, etc).
Instance Method Details
#append_sources(*args) ⇒ Object
Add a source to the end of the list.
68 69 70 71 |
# File 'lib/rails_generator/lookup.rb', line 68 def append_sources(*args) sources.concat(args.flatten) invalidate_cache! end |
#instance(generator_name, args = [], runtime_options = {}) ⇒ Object
Convenience method to lookup and instantiate a generator.
127 128 129 |
# File 'lib/rails_generator/lookup.rb', line 127 def instance(generator_name, args = [], = {}) lookup(generator_name).klass.new(args, ()) end |
#lookup(generator_name) ⇒ Object
Lookup knows how to find generators’ Specs from a list of Sources. Searches the sources, in order, for the first matching name.
112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/rails_generator/lookup.rb', line 112 def lookup(generator_name) @found ||= {} generator_name = generator_name.to_s.downcase @found[generator_name] ||= cache.find { |spec| spec.name == generator_name } unless @found[generator_name] chars = generator_name.scan(/./).map{|c|"#{c}.*?"} rx = /^#{chars}$/ gns = cache.select{|spec| spec.name =~ rx } @found[generator_name] ||= gns.first if gns.length == 1 raise GeneratorError, "Pattern '#{generator_name}' matches more than one generator: #{gns.map{|sp|sp.name}.join(', ')}" if gns.length > 1 end @found[generator_name] or raise GeneratorError, "Couldn't find '#{generator_name}' generator" end |
#prepend_sources(*args) ⇒ Object
Add a source to the beginning of the list.
74 75 76 77 |
# File 'lib/rails_generator/lookup.rb', line 74 def prepend_sources(*args) write_inheritable_array(:sources, args.flatten + sources) invalidate_cache! end |
#reset_sources ⇒ Object
Reset the source list.
80 81 82 83 |
# File 'lib/rails_generator/lookup.rb', line 80 def reset_sources write_inheritable_attribute(:sources, []) invalidate_cache! end |
#sources ⇒ Object
The list of sources where we look, in order, for generators.
63 64 65 |
# File 'lib/rails_generator/lookup.rb', line 63 def sources read_inheritable_attribute(:sources) or use_component_sources! end |
#use_application_sources! ⇒ Object
Use application generators (app, ?).
86 87 88 89 |
# File 'lib/rails_generator/lookup.rb', line 86 def use_application_sources! reset_sources sources << PathSource.new(:builtin, "#{File.dirname(__FILE__)}/generators/applications") end |
#use_component_sources! ⇒ Object
Use component generators (model, controller, etc).
-
Rails application. If RAILS_ROOT is defined we know we’re generating in the context of a Rails application, so search RAILS_ROOT/generators.
-
User home directory. Search ~/.rails/generators.
-
RubyGems. Search for gems named *_generator.
-
Builtins. Model, controller, mailer, scaffold.
98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/rails_generator/lookup.rb', line 98 def use_component_sources! reset_sources if defined? ::RAILS_ROOT sources << PathSource.new(:lib, "#{::RAILS_ROOT}/lib/generators") sources << PathSource.new(:vendor, "#{::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") end |