Method: Datasets.const_missing

Defined in:
lib/datasets/lazy.rb

.const_missing(name) ⇒ Object



37
38
39
40
41
42
43
44
# File 'lib/datasets/lazy.rb', line 37

def const_missing(name)
  if LAZY_LOADER.exist?(name)
    LAZY_LOADER.load(name)
    const_get(name)
  else
    super
  end
end