class Object

Public Class Methods

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