class Plugin
¶ ↑
Ceedling - Test-Centered Build System for C ThrowTheSwitch.org Copyright (c) 2010-25 Mike Karlesky, Mark VanderVoord, & Greg Williams SPDX-License-Identifier: MIT
¶ ↑
Attributes
Public Class Methods
Source
# File lib/ceedling/plugin.rb, line 12 def initialize(system_objects, name, root_path) @environment = [] @ceedling = system_objects @plugin_root_path = root_path @name = name self.setup end
Public Instance Methods
Source
# File lib/ceedling/plugin.rb, line 22 def inspect return this.class.name end
Override to prevent exception handling from walking & stringifying the object variables. Plugin’s object variables are gigantic and produce a flood of output.