Generator lookup is managed by a list of sources which return specs describing where to find and how to create generators. This module provides class methods for manipulating the source list and looking up generator specs, and an instance wrapper for quickly instantiating generators by name.

A spec is not a generator: it‘s a description of where to find the generator and how to create it. A source is anything that yields generators from each. PathSource and GemGeneratorSource are provided.

Methods
Classes and Modules
Module Rails::Generator::Lookup::ClassMethods
Public Class methods
included(base)
    # File railties/lib/rails_generator/lookup.rb, line 53
53:       def self.included(base)
54:         base.extend(ClassMethods)
55:         base.use_component_sources!
56:       end
Public Instance methods
instance(generator_name, args, runtime_options = {})

Convenience method to instantiate another generator.

    # File railties/lib/rails_generator/lookup.rb, line 59
59:       def instance(generator_name, args, runtime_options = {})
60:         self.class.instance(generator_name, args, runtime_options)
61:       end