Results 589 comments of MSP-Greg

> **No**. It is not an attribute (instance variable.) Whether an instance variable exists is an implementation issue. I would consider it an attribute predicate method, and doc it that...

Dan, From some YARD code, showing methods being tagged as attributes: ```ruby # @!attribute [r] object # @return [CodeObjects::Base, nil] the object the parent docstring is # attached to. May...

@DanRathbun > **FYI:** The stubs are generated from the C code comments The top-level methods I'm referring to are in a Ruby file, `Tools/sketchup.rb`

First off, please don't consider SUMT to be equivalent to "I don't like testup-2". I started by revising some of the tests using testup, and, given my background with testing,...

Re Ruby & Gems (as long as you mentioned them), I've got a lot of Ruby versions on my drive(s). From 1.9.3 forward, and hundreds of trunk builds (most are...

> Can you elaborate a bit on the load-on-demand nature of SUMT? I've got both TestUp & SUMT set up as extensions. Before performing any operations, below is a simple...

Another thing I'd like to see encouraged (and I'd don't recall what testup-2 does) is **not** adding to `$LOAD_PATH` unless done so in a block of code, whether that be...

The following methods/code handles it in SUMT: [SUMT.load_reporters](https://github.com/MSP-Greg/SUMT/blob/1eb508d04c6c8975d506a5c0787c03ddd698badc/lib/sumt/sumt_runner.rb#L248-L266) and the code at the end of the reporters: [file_reporter.rb](https://github.com/MSP-Greg/SUMT/blob/1eb508d04c6c8975d506a5c0787c03ddd698badc/lib/sumt/file_reporter.rb#L158-L162) [udp_reporter.rb](https://github.com/MSP-Greg/SUMT/blob/1eb508d04c6c8975d506a5c0787c03ddd698badc/lib/sumt/udp_reporter.rb#L80-L84) The code in MT works for all gems that are plugins,...

Odd. I had this skipped in SUMT with ```ruby skip("Fix this, Bug Splat!") if SU_VERS_INT < 19 ``` When I remove that, it Bug Splats, and the UDP reporter stops...

Been AFK for several days. I also have a Bug Splat on ```ruby def test_initialize_negative_num_polygons # Expected this to fail since creating a polygon mesh with negative number # of...