Skip to content

Instantly share code, notes, and snippets.

@zakky-dev
Created November 7, 2012 13:11
Show Gist options
  • Save zakky-dev/4031510 to your computer and use it in GitHub Desktop.
Save zakky-dev/4031510 to your computer and use it in GitHub Desktop.
def Object.const_missing(name)
replaced_string = name.to_s.gsub(/([A-Z]+)/, '/\1').downcase
require File.expand_path(File.dirname(__FILE__) + replaced_string + '.rb')
raise "Const missing." unless const_defined? name
const_get(name.to_s)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment