Sha256: d6241d1ecdedc4992a943e57d0e979a11e7992104cf4169b77a0e59bd174eb70
Contents?: true
Size: 992 Bytes
Versions: 2
Compression:
Stored size: 992 Bytes
Contents
# encoding: utf-8 module Slideshow class Plugins include LogUtils::Logging include PluginHelper ### fix: remove opts, use config (wrapped!!) def initialize( opts, config ) @opts = opts @config = config end attr_reader :opts, :config def run home = Env.home ## replace home w/ ~ (to make out more readable (shorter)) ## e.g. use gsub( home, '~' ) puts '' puts 'Plugin scripts on the load path' find_plugin_patterns.each_with_index do |pattern,i| puts " [#{i+1}] #{pattern.gsub(home,'~')}" end puts ' include:' plugins = find_plugins if plugins.empty? puts " -- none --" else plugins.each do |plugin| ## NB: use full_path - since Ruby 1.9.2 - ./ no longer included in load path for security plugin_fullpath = File.expand_path( plugin ) puts " #{plugin.gsub(home,'~')} (#{plugin_fullpath})" end end end end # class Plugins end # module Slideshow
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
slideshow-models-2.5.0 | lib/slideshow/commands/plugins.rb |
slideshow-models-2.4.0 | lib/slideshow/commands/plugins.rb |