= RelATIVE reqUIRE

A simple wrapper for Ruby's built-in require method.

Allows files to be required relative to the current file. Like,

require '../lib/my_file'

Which serves as a replacement for the tired idiom of,

require File.join(File.dirname(__FILE__), '..', 'lib', 'my_file')

Ruby's built-in require still works the same

require 'test/unit'

== Requirements

* rubygems

== Install

Download and install relative_require with the following.

sudo gem install --remote elreq

== Credits

[<b>Rick Bradley</b> http://rickbradley.com] For the caller reminder.

[<b>Yossef Mendelssohn</b> http://rubybyraeli.org] For all the prodding, urging and provoking.

== License

:include: MIT-LICENSE

== Warranty

This software is provided "as is" and without any express or
implied warranties, including, without limitation, the implied
warranties of merchantibility and fitness for a particular
purpose.