Maumagnaguagno (Mau Magnaguagno)
- Login: Maumagnaguagno
- Email: maumagnaguagno@gmail.com
- Registered on: 08/09/2015
- Last sign in: 08/09/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
03/16/2024
-
09:51 AM Ruby Revision affbc79a (git): [ruby/did_you_mean] Remove Integer floor and prefix index from Jaro distance
- The variable ``length2`` is an Integer, call to floor returns self.
The variables ``i`` and ``prefix_bonus`` are equally incremented, no need to keep the ``i`` variable.
https://github.com/ruby/did_you_mean/commit/4408802289 -
09:51 AM Ruby Revision f1682407 (git): [ruby/did_you_mean] Avoid division for small length2
- https://github.com/ruby/did_you_mean/commit/cb518e251a
12/05/2023
-
05:28 AM Ruby Revision 5f789350 (git): [rubygems/rubygems] Prefer String#split with block in Bundler::CompactIndexClient::Cache#versions
- String#split supports a block since Ruby 2.6, avoiding intermediate array.
https://github.com/rubygems/rubygems/commit/4e864a8f2e -
05:28 AM Ruby Revision 57178a97 (git): [rubygems/rubygems] Prefer String#split with block in Gem::YAMLSerializer#load
- String#split supports a block since Ruby 2.6, avoiding intermediate array.
https://github.com/rubygems/rubygems/commit/69cdf9e9d4 -
05:28 AM Ruby Revision a3cd7b3e (git): [rubygems/rubygems] Prefer String#split with block in Bundler::YAMLSerializer#load
- String#split supports a block since Ruby 2.6, avoiding intermediate array.
https://github.com/rubygems/rubygems/commit/5b324969cd
11/27/2023
-
01:35 AM Ruby Revision 67ee91a3 (git): [ruby/psych] Prefer each_char in Psych::Visitors::Visitor::ToRuby#deserialize
- Use safe navigation operator with each_char to remove empty strings and improve readability.
https://github.com/ruby/psych/commit/5fe714b216
11/24/2023
-
07:26 AM Ruby Revision 87ddfb33 (git): [rubygems/rubygems] Fix typo missing do
- https://github.com/rubygems/rubygems/commit/4eade32ad6
-
07:26 AM Ruby Revision f792b55b (git): [rubygems/rubygems] Prefer String#each_line in Gem::Command
- Replace ``String#split("\n").each`` with ``String#each_line``.
https://github.com/rubygems/rubygems/commit/958744807d
11/08/2023
-
03:37 PM Ruby Revision eb2abc3f (git): YJIT: refactor format_number (#8869)
- Replace enumerators with simpler and faster version that only inserts commas before '.' or end of integer string.
11/01/2023
-
06:40 PM Ruby Revision d3ea9070 (git): YJIT: skip to_a in format_number (#8815)
- String#chars returns an array instead of an enumerator since Ruby 2.0.