ntl (Nathan Ladd)
- Login: ntl
- Registered on: 06/28/2023
- Last sign in: 04/01/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
05/21/2025
-
02:33 AM Ruby Revision 3ac239f7 (git): [rubygems/rubygems] Copy prerelease attribute to dependency resolver sets
- https://github.com/rubygems/rubygems/commit/5956e7f8e5
04/28/2024
-
04:11 PM Ruby Feature #18583: Pattern-matching: API for custom unpacking strategies?
- Could the match operator, `=~`, could be used as a general complement to `===`?
Example (following original sketch from @zverok):
``` ruby
class Matcher
def initialize(regexp)
@regexp = regexp
end
def ===(obj)
@regexp.ma...
03/06/2024
-
08:10 PM Ruby Feature #20318: Pattern matching `case ... in` support for triple-dot arguments
- It might be a good idea to consider how proc/lambda/block arguments could also have comparable syntax. For instance, a block argument example:
``` ruby
HTTP.post("http://example.com/some-resource", "some data") do |...|
in code: (20...