Kazuhiro NISHIYAMA
Kazuhiro NISHIYAMA
When I printed out page with left-bottom ribbon in development environment, ribbon is middle of page 2. How about hiding ribbon in css of `@media print`?
Use `n$` instead of repeating same parameters.
`dokku postgres:backup-auth` creates world-readable files. I think `AWS_SECRET_ACCESS_KEY` should not be world-readable at least. ```console vagrant@dokku:~$ dokku postgres:backup-auth lolipop MINIO_ACCESS_KEY_ID MINIO_SECRET_ACCESS_KEY us-east-1 s3v4 https://YOURMINIOSERVICE vagrant@dokku:~$ ls -al /var/lib/dokku/services/postgres/lolipop/backup/ total 28...
debug gem sometimes failed on test-bundled-gems. recent failures: https://github.com/ruby/actions/runs/5515459899?check_suite_focus=true#step:16:2055 ``` Testing the debug gem creating Makefile compiling /Users/runner/work/actions/actions/snapshot-master/gems/src/debug/ext/debug/debug.c compiling /Users/runner/work/actions/actions/snapshot-master/gems/src/debug/ext/debug/iseq_collector.c linking shared-object debug/debug.bundle /Users/runner/work/actions/actions/snapshot-master/exe/ruby -C /Users/runner/work/actions/actions/snapshot-master/gems/src/debug -Ilib /Users/runner/work/actions/actions/snapshot-master/.bundle/bin/rake test /Users/runner/work/actions/actions/snapshot-master/gems/src/debug/lib/debug/client.rb:178:...
- [x] `Enumerator::Chain`, `Enumerable#chain`, `Enumerator#+` - [x] `Method#`, `Proc#` - [x] `Range#cover?` が Range オブジェクトを受け付けるようになりました。 https://github.com/rurema/doctree/pull/1502 - [ ] `RubyVM::AbstractSyntaxTree` - [x] `RubyVM.resolve_feature_path` - [ ] TracePoint の変更 - [...
https://github.com/ruby/ruby/commit/aa347cbe65031ff02a5b2de0f7a36e29d72b8008 https://ruby-trunk-changes.hatenablog.com/entry/ruby_trunk_changes_20220315
https://docs.ruby-lang.org/ja/latest/class/Object.html#I_--3C--3D--3E などは実際には Kernel に定義されていますが、探しやすいように Object に書くようにしていたと思っています。 ```ruby Object.instance_method : #=> # ``` しかし、今は「継承しているメソッド」がクラスのページに出てくるようになっているので、本来の Kernel の方に移動しても https://docs.ruby-lang.org/ja/latest/class/Object.html から探せるので、問題なくなっているのではないかと思います。 そこで Kernel で定義されているメソッドは Object から移動しても良いのではないかと思ったのですが、どうでしょうか。
#2412 のコメントのような話があるので、メソッドの説明の中で `::` を使ってメソッド呼び出しをしているところは `.` に統一するようにした方が良いかもしれません。(文法の説明のところには残す必要がありますが。)
> 本文中に `Method#>>`へのリンクはあるので、see alsoには Procへのリンクだけを足しています。これは他のメソッドも同様です。 > see also にも足したほうが良ければ教えてください _Originally posted by @pocke in https://github.com/rurema/doctree/pull/2282/files_ 重複して書くかどうかは特に方針は決まっていないようなので決めておくと良さそうです。
https://docs.ruby-lang.org/ja/latest/class/Enumerator.html の説明や https://docs.ruby-lang.org/ja/latest/class/Enumerator=3a=3aLazy.html の例に出てくるのに、クラス自体のドキュメントがありません。 メトッドがほぼないようなクラスでも、例外のクラスはメソッドなしでも追加されている、という例があるので、追加される方が良いと思います。