== Description
My collection of extensions to Ruby's core and stdlib classes.
== Install
gem install cldwalker-my_core -s http://github.com/cldwalker/my_core
== Usage
Since all these extensions are wrapped in modules you need to require
the extension you want and then include/extend it into your desired class.
I don't automatically monkeypatch your classes. You have the choice
to monkeypatch or not.
To use the instance methods of my Array extension.
require 'my_core/object'
Object.send :include, MyCore::Array
To use the class methods of my File extension.
require 'my_core/file'
Object.send :extend, MyCore::File
If you'd like a more convient way of loading multiple extensions in this library,
see my core gem: http://github.com/cldwalker/core .
== Todo
Tests!