Class: Object

Inherits:
BasicObject
Defined in:
lib/rollerblades/dependencies.rb

Class Method Summary collapse

Class Method Details

.const_missing(c) ⇒ Object



3
4
5
6
7
8
9
10
11
12
# File 'lib/rollerblades/dependencies.rb', line 3

def self.const_missing(c)
	return nil if @calling_const_missing

	@calling_const_missing = true
	require Rollerblades.to_underscore(c.to_s)
	klass = Object.const_get(c)
	@calling_const_missing = false

	klass
end