# File lib/monkey/backend/extlib.rb, line 2
  def setup
    load_libs :object, :string, :inflection
    missing :parent, :extract_options, :tap
    ::Object.class_eval { alias singleton_class meta_class }
    ::String.class_eval do
      alias camelcase to_const_string
      alias underscore to_const_path
      def constantize
        Extlib::Inflection.constantize(self)
      end
    end
  end