[#66678] [ruby-trunk - Feature #10481] Add "if" and "unless" clauses to rescue statements — alex@...
Issue #10481 has been updated by Alex Boyd.
3 messages
2014/12/04
[#66762] Re: [ruby-changes:36667] normal:r48748 (trunk): struct: avoid all O(n) behavior on access — Tanaka Akira <akr@...>
2014-12-10 0:44 GMT+09:00 normal <ko1@atdot.net>:
3 messages
2014/12/10
[#66851] [ruby-trunk - Feature #10585] struct: speedup struct.attr = v for first 10 attributes and struct[:attr] for big structs — funny.falcon@...
Issue #10585 has been updated by Yura Sokolov.
3 messages
2014/12/15
[#67126] Ruby 2.2.0 Released — "NARUSE, Yui" <naruse@...>
We are pleased to announce the release of Ruby 2.2.0.
8 messages
2014/12/25
[#67128] Re: Ruby 2.2.0 Released
— Rodrigo Rosenfeld Rosas <rr.rosas@...>
2014/12/25
I can't install it in any of our Ubuntu servers using rbenv:
[#67129] Re: Ruby 2.2.0 Released
— SHIBATA Hiroshi <shibata.hiroshi@...>
2014/12/25
> I can't install it in any of our Ubuntu servers using rbenv:
[ruby-core:67254] [CommonRuby - Feature #10085] Add non-ASCII case conversion to String#upcase/downcase/swapcase/capitalize
From:
akr@...
Date:
2014-12-31 09:19:00 UTC
List:
ruby-core #67254
Issue #10085 has been updated by Akira Tanaka. The related issue, [Bug #10550] Resolv::DNS.getaddresses, needs ASCII-only case conversion. Unicode aware case conversion is not suitable for the issue. See RFC 4343. ---------------------------------------- Feature #10085: Add non-ASCII case conversion to String#upcase/downcase/swapcase/capitalize https://bugs.ruby-lang.org/issues/10085#change-50724 * Author: Martin Dürst * Status: Open * Priority: Normal * Assignee: Martin Dürst * Category: * Target version: Ruby 2.3.0 ---------------------------------------- Case conversion functions are currently limited to ASCII characters. When used with formal languages, that may be appropriate, but it is often not appropriate for applications. In order to avoid backwards-compatibility problems and to make sure that the various variants of case conversion (e.g. language-dependent) can be selected, we propose to add an optional parameter to the case conversion functions. Our current design idea is as follows: ASCII-only if no parameter: 'Türkiye'.upcase # => 'TüRKIYE', note lower-case ü Parameter triggers (general) Unicode conversion: 'Türkiye'.upcase 'en' # => 'TÜRKIYE', note upper-case Ü The parameter is actually a BCP 47 (http://tools.ietf.org/html/bcp47) language tag. This means that for languages with special case conversion rules, such as Turkish, this works as follows: 'Türkiye'.upcase 'tr' # => 'TÜRKİYE', note upper-case İ (with dot!) In the second example, we used 'en', but most other languages would work, too, because a single case conversion works for most languages. Turkic languages are the biggest exception. The Unicode standard also defines various cases of "case-folding", which usually is lossy, e.g. mapping German ß to ss and so on. It should be possible to include this functionality in this proposal, e.g. by using :symbols or CONSTANTs for the few specific foldings. It may also be possible to define a reversible variant of case conversion in particular for use with swapcase. In the long term, instead of a direct BCP 47 string, we could create a Locale class that would incorporate language-specific facilities, but this may need more detailed considerations. The idea of using an additional parameter to indicate language-dependent or other processing variants should be extensible to areas such as number-to-string conversion and date formation. While this proposal is only about case conversion, we should check that there is a good chance to use similar parameter conventions for such extensions. [This proposal is based on research done together with my student Kimihito Matsui.] ---Files-------------------------------- CaseConversion.pdf (340 KB) -- https://bugs.ruby-lang.org/