andela-akabiru/panda

View on GitHub
lib/panda/dependencies.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Object
  def self.const_missing(const)
    require const.to_s.to_snake_case
    Object.const_get(const)
  end
end