2 3 4 5 6 7 8 9 10 11
# File 'lib/runways/dependencies.rb', line 2 def self.const_missing(c) return nil if @calling_const_missing @calling_const_missing = true require c.to_s.underscore klass = Object.const_get(c) @calling_const_missing = false klass end