David M. Lary
David M. Lary
### Issue Ran into this issue while writing parameterized tests that include an optional block argument. Simplest implementation of the problem: ```ruby require "method_source" a = [ {block: ->(e) {...
When calling an alias to a command that uses Shellwords for argument parsing, the arguments get double processed by `Shellwords.split()`. This is because by default aliases are created using `Pry::CommandSet#alias_command`...
Please add support for the `--loginuid-immutable` flag that is available to `auditctl`. This prevents an administrative user from changing their audit uid once it has been set. It is implemented...
`parse_ctype()` does not handle `int long len` correctly; errors with `unknown type: int` ```ruby [22] pry(#)> parse_struct_signature(["char id", "int long size"]) Fiddle::DLError: unknown type: int from /Users/dmlary/.rbenv/versions/3.0.2/lib/ruby/3.0.0/fiddle/cparser.rb:245:in `parse_ctype' [24] pry(#)>...
Note: This is a **feature request**. Please answer the following before submitting your issue: Note: Please include any substantial examples (debug session output, stacktraces, etc) as linked gists. 1. What...
Resolves #17
Does not support Procs: ```txt [8] pry(Morrow::Console)> h = { proc: proc{} } => {:proc=>#} [9] pry(Morrow::Console)> DeepClone.clone(h) TypeError: allocator undefined for Proc from (pry):9:in `clone' ``` However, Proc#clone should...
# Objective - Add support to interactively step through systems & frames within App - system step runs the next system in the schedule on the next frame - frame...
Please, before submitting a new issue verify and check: - [x] I tested it on latest raylib version from master branch - [x] I checked there is no similar issue...
# Objective Add interactive system debugging capabilities to bevy, providing step/break/continue style capabilities to running system schedules. * Original implementation: #8063 - `ignore_stepping()` everywhere was too much complexity * Schedule-config...