kputnam

Results 26 issues of kputnam

### Problem description I installed sorbet using `:LspInstall sorbet`, but when I run `:LspInfo` after opening a ruby file, it says it's not attached and "unable to find executable. Please...

installation-issue

```ruby class Foo def bar; end def foo; end end Foo.new. Foo.new. ```

Up to c26eedab (shortly after v0.9.16), YARD showed all the modules and classes as expected in the Class List for my project. The next commit, 92c1f875 (which fixed #1209), caused...

Ruby 2.7 introduces pattern matching, which could make the API nicer for users. From what I've read, we can support this by implementing `#===` and `#deconstruct` and/or `#deconstruct_keys` on data...

research

Most X12 transaction set definitions have three tables: a header table, a detail table, and a summary table. The header and summary tables usually begin with a non-repeatable segment (eg,...

research

This is still WIP. Hoping for only minimal API changes.

It looks like there's a bug in the error-handling code when an `ISA` segment hasn't been generated yet. The problem is in [`builder/generation.rb#L36`](https://github.com/irobayna/stupidedi/blob/master/lib/stupidedi/builder/generation.rb#L36). Here `zipper.append` fails when `zipper` is a...

defect

This issue documents the status of Rubinius support. * [ ] Rubinius lacks support for refinements: https://github.com/rubinius/rubinius#the-ruby-programming-language (also https://github.com/rubinius/rubinius/issues/3715). These are used in stupidedi in [`lib/ruby`](https://github.com/irobayna/stupidedi/tree/master/lib/ruby)

limitation

This issue will be used to track the status of JRuby support. Currently JRuby (9.2) doesn't work with stupidedi. * [ ] https://github.com/jruby/jruby/issues/4687 Doesn't support refining a Module. This [feature](https://bugs.ruby-lang.org/issues/12534)...

limitation

The X12 standard defines element types including AN (string), ID (enum string), DT (date), TM (time), etc, and also define B (binary). Binary elements do not have a fixed length,...

limitation