kwerle (Kurt Werle)
- Login: kwerle
- Email: kurt@CircleW.org
- Registered on: 12/03/2009
- Last sign in: 10/08/2020
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 2 | 3 |
Activity
06/22/2020
-
04:27 PM Ruby Bug #16976 (Closed): Documentation bug in Proc
- https://ruby-doc.org/core-2.7.0/Proc.html
About 1/3 of the way through the docs, it states:
Lambda semantics is typically preserved during the proc lifetime, including &-deconstruction to a block of code:
``` ruby
p = proc {|x,...
06/19/2020
-
03:07 PM Ruby Feature #16971 (Open): weak_ref&.some_method should behave like object&.some_method
- The following patterns mean basically the same thing and should behave the same:
``` ruby
weak_ref = WeakRef.new(some_object)
...
weak_ref.some_method if weak_ref.weakref_alive?()
some_object.some_method if some_object.present?
```...
12/03/2009
-
10:48 AM Ruby Bug #2423 (Rejected): REXML edge case with <a>A > B</a>
- =begin
The attached file: rexml_test.rb was written in the context of a rails app, and used ./script/runner to execute.
It uses Nokogiri by way of comparison to REXML.
There are 4 test cases, and only the last one fails: REXM...