class Object

Public Class Methods

const_missing(const) click to toggle source
# File lib/peictt/dependencies.rb, line 26
def self.const_missing(const)
  require const.to_s.to_snake_case
  Object.const_get(const)
end