This repository has been archived on 2022-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
wikiufc/vendor/plugins/gemsonrails/init.rb
2008-03-02 16:04:34 -03:00

9 lines
261 B
Ruby

gems = Dir[File.join(RAILS_ROOT, "vendor/gems/*")]
if gems.any?
gems.each do |dir|
lib = File.join(dir, 'lib')
$LOAD_PATH.unshift(lib) if File.directory?(lib)
init_rb = File.join(dir, 'init.rb')
require init_rb if File.file?(init_rb)
end
end