class Object

Public Class Methods

lookup_missing_generator(class_id) click to toggle source

Lookup missing generators using const_missing. This allows any generator to reference another without having to know its location: RubyGems, ~/.rubigen/generators, and APP_ROOT/generators.

# File lib/rubigen/lookup.rb, line 8
def lookup_missing_generator(class_id)
  if md = %r(.+)Generator$/.match(class_id.to_s)
    name = md.captures.first.demodulize.underscore
    RubiGen::Base.active.lookup(name).klass
  else
    const_missing_before_generators(class_id)
  end
end