class Object

Public Class Methods

const_missing(const) click to toggle source
# File lib/zephyre/dependencies.rb, line 2
def self.const_missing(const)
        # Require file if it isn't found
        require const.to_s.to_snake_case
        Object.const_get(const)
end