2011-05-15 05:58:27 -04:00
|
|
|
class Pry
|
|
|
|
class PluginManager
|
|
|
|
PRY_PLUGIN_PREFIX = /^pry-/
|
2011-05-18 23:31:21 -04:00
|
|
|
|
2011-09-01 12:16:43 -04:00
|
|
|
# Placeholder when no associated gem found, displays warning
|
|
|
|
class NoPlugin
|
|
|
|
def initialize(name)
|
|
|
|
@name = name
|
|
|
|
end
|
|
|
|
|
|
|
|
def method_missing(*args)
|
2012-01-22 22:40:40 -05:00
|
|
|
warn "Warning: The plugin '#{@name}' was not found! (no gem found)"
|
2011-09-01 12:16:43 -04:00
|
|
|
end
|
|
|
|
end
|
2011-06-02 05:45:53 -04:00
|
|
|
|
2011-05-15 05:58:27 -04:00
|
|
|
class Plugin
|
2011-06-16 09:43:45 -04:00
|
|
|
attr_accessor :name, :gem_name, :enabled, :spec, :active
|
2011-05-15 05:58:27 -04:00
|
|
|
|
2011-06-16 09:43:45 -04:00
|
|
|
def initialize(name, gem_name, spec, enabled)
|
|
|
|
@name, @gem_name, @enabled, @spec = name, gem_name, enabled, spec
|
2011-05-15 05:58:27 -04:00
|
|
|
end
|
|
|
|
|
2011-09-01 12:16:43 -04:00
|
|
|
# Disable a plugin. (prevents plugin from being loaded, cannot
|
|
|
|
# disable an already activated plugin)
|
2011-05-15 05:58:27 -04:00
|
|
|
def disable!
|
|
|
|
self.enabled = false
|
|
|
|
end
|
2011-05-18 23:31:21 -04:00
|
|
|
|
2011-09-01 12:16:43 -04:00
|
|
|
# Enable a plugin. (does not load it immediately but puts on
|
|
|
|
# 'white list' to be loaded)
|
2011-05-18 23:31:21 -04:00
|
|
|
def enable!
|
|
|
|
self.enabled = true
|
|
|
|
end
|
|
|
|
|
2011-12-06 21:07:02 -05:00
|
|
|
# Load the Command line options defined by this plugin (if they exist)
|
|
|
|
def load_cli_options
|
|
|
|
cli_options_file = File.join(spec.full_gem_path, "lib/#{spec.name}/cli.rb")
|
|
|
|
require cli_options_file if File.exists?(cli_options_file)
|
|
|
|
end
|
2011-09-01 12:16:43 -04:00
|
|
|
# Activate the plugin (require the gem - enables/loads the
|
2011-11-12 10:31:43 -05:00
|
|
|
# plugin immediately at point of call, even if plugin is
|
|
|
|
# disabled)
|
|
|
|
# Does not reload plugin if it's already active.
|
2011-05-18 23:31:21 -04:00
|
|
|
def activate!
|
2012-04-23 06:36:27 -04:00
|
|
|
# Create the configuration object for the plugin.
|
|
|
|
Pry.config.send("#{gem_name.gsub('-', '_')}=", OpenStruct.new)
|
|
|
|
|
2011-05-18 23:31:21 -04:00
|
|
|
begin
|
2011-09-01 12:16:43 -04:00
|
|
|
require gem_name if !active?
|
2011-12-10 10:11:31 -05:00
|
|
|
rescue LoadError => e
|
2012-01-22 22:40:40 -05:00
|
|
|
warn "Warning: The plugin '#{gem_name}' was not found! (gem found but could not be loaded)"
|
|
|
|
warn e
|
2011-05-18 23:31:21 -04:00
|
|
|
end
|
2012-04-20 07:15:33 -04:00
|
|
|
|
2011-05-23 06:11:50 -04:00
|
|
|
self.active = true
|
|
|
|
self.enabled = true
|
2011-05-18 23:31:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
alias active? active
|
2011-05-15 05:58:27 -04:00
|
|
|
alias enabled? enabled
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@plugins = []
|
|
|
|
end
|
|
|
|
|
2011-05-15 12:19:13 -04:00
|
|
|
# Find all installed Pry plugins and store them in an internal array.
|
2011-05-15 05:58:27 -04:00
|
|
|
def locate_plugins
|
2011-05-18 23:31:21 -04:00
|
|
|
Gem.refresh
|
2011-06-01 02:47:14 -04:00
|
|
|
(Gem::Specification.respond_to?(:each) ? Gem::Specification : Gem.source_index.find_name('')).each do |gem|
|
2011-05-15 05:58:27 -04:00
|
|
|
next if gem.name !~ PRY_PLUGIN_PREFIX
|
|
|
|
plugin_name = gem.name.split('-', 2).last
|
2011-06-16 09:43:45 -04:00
|
|
|
@plugins << Plugin.new(plugin_name, gem.name, gem, true) if !gem_located?(gem.name)
|
2011-05-15 05:58:27 -04:00
|
|
|
end
|
2011-05-15 12:19:13 -04:00
|
|
|
@plugins
|
2011-05-15 05:58:27 -04:00
|
|
|
end
|
|
|
|
|
2011-05-15 12:19:13 -04:00
|
|
|
# @return [Hash] A hash with all plugin names (minus the 'pry-') as
|
|
|
|
# keys and Plugin objects as values.
|
2011-05-15 05:58:27 -04:00
|
|
|
def plugins
|
2011-09-01 12:16:43 -04:00
|
|
|
h = Hash.new { |_, key| NoPlugin.new(key) }
|
2011-05-15 05:58:27 -04:00
|
|
|
@plugins.each do |plugin|
|
|
|
|
h[plugin.name] = plugin
|
|
|
|
end
|
|
|
|
h
|
|
|
|
end
|
|
|
|
|
2011-05-15 12:19:13 -04:00
|
|
|
# Require all enabled plugins, disabled plugins are skipped.
|
2011-05-15 05:58:27 -04:00
|
|
|
def load_plugins
|
|
|
|
@plugins.each do |plugin|
|
2011-05-18 23:31:21 -04:00
|
|
|
plugin.activate! if plugin.enabled?
|
2011-05-15 05:58:27 -04:00
|
|
|
end
|
|
|
|
end
|
2011-05-18 23:31:21 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
def gem_located?(gem_name)
|
|
|
|
@plugins.any? { |plugin| plugin.gem_name == gem_name }
|
|
|
|
end
|
2011-05-15 05:58:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|