noraj (Alexandre ZANNI)
- Login: noraj
- Registered on: 05/26/2020
- Last sign in: 10/14/2023
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 4 | 5 |
Activity
10/14/2023
-
11:57 AM Ruby Feature #18822: Ruby lack a proper method to percent-encode strings for URIs (RFC 3986)
- I just want to complete what was said before.
URI.escape and URI.unescape were deprecated but they were replaced by URI::Parser.new.escape and URI::Parser.new.unescape that implements RFC 2396. In fact this is calling URI::RFC2396_Par...
02/06/2023
-
06:38 PM Ruby Bug #19414: uninitialized constant URI::WSS in 3.0.X and 3.1.X
- duerst (Martin Dürst) wrote in #note-3:
> @noraj This is just how backporting works. Closed means closed on trunk; the backporting maintainers check what they need to do separately.
Ok, thank you and sorry for the naive question. I r... -
12:53 AM Ruby Bug #19414: uninitialized constant URI::WSS in 3.0.X and 3.1.X
- jeremyevans0 (Jeremy Evans) wrote in #note-1:
> Since this is fixed in the master branch and Ruby 3.2, this is a backport request for 3.1 and 3.0.
> ...
Do I have something to do? Thanks to the Backport field this issue is listed in [B...
02/05/2023
-
01:08 AM Ruby Bug #19414 (Closed): uninitialized constant URI::WSS in 3.0.X and 3.1.X
- I have a library called [ctf-party](https://github.com/noraj/ctf-party), [making use of URI:WSS](https://github.com/noraj/ctf-party/blob/ef3b82cc1668325b782246a9bb162b18a9b2930c/lib/ctf_party/defang.rb#L86), and it's making my [CI pipeli...
01/08/2023
-
01:24 PM Ruby Feature #19317: Unicode ICU Full case mapping
- zverok (Victor Shepelev) wrote in #note-5:
> Also, I believe that having a formal language code in the API (instead of a small informal list of writing systems supported) creates a false expectation that every language specificity might... -
12:45 AM Ruby Feature #19317: Unicode ICU Full case mapping
- duerst (Martin Dürst) wrote in #note-3:
> Something like this was discussed. My recollection was that it was rejected because it was overkill for the case at hand, and there was no other functionality in core Ruby that needed it.
May...
01/06/2023
-
03:05 PM Ruby Feature #19317 (Assigned): Unicode ICU Full case mapping
- As announced in [Case Mapping](https://docs.ruby-lang.org/en/master/case_mapping_rdoc.html#label-Default+Case+Mapping), Ruby support for Unicode case mapping is not complete yet.
Unicode supports in Ruby is pretty awesome, it works by... -
02:28 PM Ruby Feature #19302: Non-destructive String#insert
- I think we can close this issue.
01/04/2023
-
11:14 PM Ruby Feature #19302: Non-destructive String#insert
- jeremyevans0 (Jeremy Evans) wrote in #note-3:
> austin (Austin Ziegler) wrote in #note-2:
> ...
You made a point. Creating non-destructive variant of any destructive method seems unnecessary since there is dup that is pretty easy to us...
01/02/2023
-
11:52 PM Ruby Feature #14919: Add String#byteinsert
- Yes a grapheme can be composed of several code points.
An example is variant selector:
```ruby
irb(main):001:0> a = "\u2665\n\u2764\n\u2665\ufe0f\n\u2764\ufe0f"
=> "♥\n❤\n♥️\n❤️"
irb(main):002:0> puts a
♥
❤ ...