class Object

Public Instance Methods

require_all(path) click to toggle source

helper

# File lib/nopoint.rb, line 2
def require_all(path)
        glob = File.join(File.dirname(__FILE__), path, '*.rb')
        Dir[glob].each do |file|
                require file
        end
end