Sha256: 269b844f9de5746d92dcf133e0a0a2594629cb51f246b4c146e975a2df3b80e6
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
module Slideshow module PluginHelper def find_plugin_patterns patterns = [] patterns << "#{config.config_dir}/lib/**/*.rb" patterns << 'lib/**/*.rb' unless Slideshow.root == File.expand_path( '.' ) # don't include lib if we are in repo (don't include slideshow/lib) patterns end def find_plugins patterns = find_plugin_patterns plugins=[] patterns.each do |pattern| pattern.gsub!( '\\', '/') # normalize path; make sure all path use / only Dir.glob( pattern ) do |plugin| plugins << plugin end end plugins end def load_plugins patterns = find_plugin_patterns patterns.each do |pattern| pattern.gsub!( '\\', '/') # normalize path; make sure all path use / only Dir.glob( pattern ) do |plugin| begin ## NB: use full_path - since Ruby 1.9.2 - ./ no longer included in load path for security plugin_fullpath = File.expand_path( plugin ) # nb: will use Dir.pwd (e.g. ./) as second arg puts "Loading plugins in '#{plugin}' (#{plugin_fullpath})..." require( plugin_fullpath ) rescue Exception => e puts "** error: failed loading plugins in '#{plugin}': #{e}" end end end end # method load_plugins end # module PluginHelper end # module Slideshow
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
slideshow-2.0.1 | lib/slideshow/plugin_helpers.rb |