Sha256: 23d6ff20238e97677bad36ab43020f534093ba5cc765f638d0f3236c8b1ffcae
Contents?: true
Size: 1.05 KB
Versions: 18
Compression:
Stored size: 1.05 KB
Contents
module Pantograph class PluginInfo attr_reader :plugin_name attr_reader :author attr_reader :gem_name attr_reader :email attr_reader :summary attr_reader :details def initialize(plugin_name, author, email, summary, details) @plugin_name = plugin_name @author = author @email = email @summary = summary @details = details end def gem_name "#{Pantograph::PluginManager::PANTOGRAPH_PLUGIN_PREFIX}#{plugin_name}" end def require_path gem_name.tr('-', '/') end def actions_path File.join(require_path, 'actions') end def helper_path File.join(require_path, 'helper') end # Used to expose a local binding for use in ERB templating # # rubocop:disable Style/AccessorMethodName def get_binding binding end # rubocop:enable Style/AccessorMethodName def ==(other) @plugin_name == other.plugin_name && @author == other.author && @email == other.email && @summary == other.summary end end end
Version data entries
18 entries across 18 versions & 1 rubygems