Module: RTR
- Defined in:
- lib/rtr.rb,
lib/rtr/commands.rb
Defined Under Namespace
Classes: Commands
Class Method Summary collapse
-
.require_all_libs_relative_to(fname) ⇒ Object
Utility method used to rquire all files ending in .rb that lie in the directory below this file that has the same name as the filename passed in.
Class Method Details
.require_all_libs_relative_to(fname) ⇒ Object
Utility method used to rquire all files ending in .rb that lie in the directory below this file that has the same name as the filename passed in. Optionally, a specific directory name can be passed in such that the filename does not have to be equivalent to the directory.
12 13 14 15 |
# File 'lib/rtr.rb', line 12 def self.require_all_libs_relative_to(fname) search_me = File.(File.join(File.dirname(fname), '**', '*.rb')) Dir.glob(search_me).sort.each { |rb| require rb } end |