# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. module Ramaze # Require all .rb and .so files on the given globs, utilizes Dir::[]. # # Examples: # # # Given following directory structure: # # src/foo.rb # # src/bar.so # # src/foo.yaml # # src/foobar/baz.rb # # src/foobar/README # # # requires all files in 'src': # Ramaze.acquire 'src/*' # # # requires all files in 'src' recursive: # Ramaze.acquire 'src/**/*' # # # require 'src/foo.rb' and 'src/bar.so' and 'src/foobar/baz.rb' # Ramaze.acquire 'src/*', 'src/foobar/*' # def self.acquire(*globs) globs.flatten.each do |glob| Dir[glob].each do |file| require file if file =~ /\.(rb|so)$/ end end end end # Ramaze