Method: Gem.load_plugins
- Defined in:
- lib/rubygems.rb
.load_plugins ⇒ Object
Find rubygems plugin files in the standard location and load them
1087 1088 1089 1090 1091 |
# File 'lib/rubygems.rb', line 1087 def self.load_plugins Gem.path.each do |gem_path| load_plugin_files Gem::Util.glob_files_in_dir("*#{Gem.plugin_suffix_pattern}", plugindir(gem_path)) end end |