module Pantograph
rubocop:disable Style/CaseEquality rubocop:disable Style/MultilineTernaryOperator rubocop:disable Style/NestedTernaryOperator
Constants
- DESCRIPTION
- Helper
- ROOT
- RUBOCOP_REQUIREMENT
- SHELLS
- SUMMARY
- TOOLS
- TOOL_CONFIG_FILES
a list of all the config files we currently expect
- UI
- VERSION
Attributes
external_actions[R]
Public Class Methods
load_actions()
click to toggle source
# File pantograph/lib/pantograph.rb, line 34 def load_actions Pantograph::Actions.load_default_actions Pantograph::Actions.load_helpers if PantographCore::PantographFolder.path actions_path = File.join(PantographCore::PantographFolder.path, 'actions') @external_actions = Pantograph::Actions.load_external_actions(actions_path) if File.directory?(actions_path) end end
plugin_manager()
click to toggle source
# File pantograph/lib/pantograph.rb, line 46 def plugin_manager @plugin_manager ||= Pantograph::PluginManager.new end