Requires

Gem Version Build Status

A tiny convenience function to require all ruby files in a directory.

Install

$ gem install requires

Usage

# Require a directory (recursively)
require 'requires'
requires 'lib'

# Individual files can also be loaded (with or without extension)
requires 'lib/base'
requires 'lib/base.rb'

# ...as well as external gems or built in libraries
requires 'yaml'

All paths are relative to the location of the file that calls reuiqres.