Module: FastRuby::Modules

Defined in:
lib/fastruby/modules.rb

Class Method Summary collapse

Class Method Details

.load_all(name = "") ⇒ Object



24
25
26
27
28
# File 'lib/fastruby/modules.rb', line 24

def self.load_all(name = "")
  Dir.glob(FastRuby.fastruby_load_path + "/fastruby/modules/#{name}/**/*.rb").each do |path|
    require path
  end
end