Module: QEDProject::Plugins

Defined in:
lib/qedproject/plugins.rb

Class Method Summary collapse

Class Method Details

.load_pluginsObject



4
5
6
7
8
9
10
# File 'lib/qedproject/plugins.rb', line 4

def self.load_plugins
  Gem.refresh
  (Gem::Specification.respond_to?(:each) ? Gem::Specification : Gem.source_index.find_name('')).each do |gem|
    next if gem.name !~ /^qedproject-/
    require gem.name
  end
end