class PluginContext
Context used when executing the plugin’s links.rb script. This class defines the ‘functions’ that the links.rb script can call.
Attributes
links[R]
Public Class Methods
new()
click to toggle source
# File lib/quartz_flow/plugin.rb, line 4 def initialize @links = [] end
Public Instance Methods
link(name, path)
click to toggle source
# File lib/quartz_flow/plugin.rb, line 10 def link(name, path) @links.push [name, path] end