kamipo (Ryuta Kamizono)
- Login: kamipo
- Registered on: 06/04/2019
- Last sign in: 10/07/2019
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
07/18/2021
-
08:44 AM Ruby Revision 29ad4ab3 (git): [ruby/openssl] Fix some typos [ci skip]
- https://github.com/ruby/openssl/commit/51b3030b2b
05/10/2021
-
10:19 AM Ruby Revision 73136ebb (git): [ruby/psych] Fix some typos [ci skip]
- https://github.com/ruby/psych/commit/98617e55a1
04/28/2021
-
02:10 AM Ruby Revision 908785ef (git): [ruby/net-imap] Fix typo intentionaly -> intentionally [ci skip]
- https://github.com/ruby/net-imap/commit/4057c662e7
04/26/2021
-
12:13 PM Ruby Revision fc24b073 (git): [ruby/irb] Fix typo ture -> true [ci skip]
- https://github.com/ruby/irb/commit/783a0569e8
-
01:07 AM Ruby Revision 33f2ff3b (git): Fix some typos by spell checker
07/29/2020
-
06:54 AM Ruby Feature #17055: Allow suppressing uninitialized instance variable and method redefined verbose mode warnings
- Rails also want a way to suppress method redefinition warnings.
For now it uses the alias hack.
https://github.com/rails/rails/blob/b2eb1d1c55a59fee1e6c4cba7030d8ceb524267c/activesupport/lib/active_support/core_ext/module/redefine_me...
06/11/2020
-
09:11 AM Ruby Bug #16950: Stop nonsense keyword argument warnings in 2.6
- Using non-keyword argument is not always workaround for that.
For example, redis 4.2.0 gem has changed options hash to kwargs.
To address kwargs warnings, we need to add ** to the method call, it works for both redis 4.2.0 and 4.1.4 wi...
06/07/2020
-
01:33 AM Ruby Revision 9d24ddbb (git): Fix `make benchmark` example
- `make benchmark ARGS=../benchmark/erb_render.yml` does not work.
```
% make benchmark ARGS=../benchmark/erb_render.yml
/Users/kamipo/.rbenv/shims/ruby --disable=gems -rrubygems -I./benchmark/lib ./benchmark/benchmark-driver/exe/benchmar...
05/19/2020
-
09:45 AM Ruby Feature #16891: Restore Positional Argument to Keyword Conversion
- Instead of restoring all positional hash argument to keyword argument conversion, how about adding new implicit maybe kwargs flag for opt-in warning (i.e. implicit maybe kwargs flag by default)?
```ruby
def foo(key: 42); end
foo({key: 4...
04/07/2020
-
01:16 AM Ruby Bug #16669: Rails Action Text unit tests fail since b9007b6c548f91e88fd3f2ffa23de740431fa969
- https://bugs.ruby-lang.org/projects/ruby-master/repository/git/revisions/2943ff9d4441485a18773aa745bab7f47767dde2 fixes some of failures in Rails CI, but "undefined method `root' for Rails:Module" still exist I explained above.
https:...