tmm1 / rbtrace

like strace, but for ruby code
MIT License
1.71k stars 65 forks source link

Fix ruby 2.8/3.0 deprecations about File.exists? #79

Closed casperisfine closed 4 years ago

casperisfine commented 4 years ago

I'm testing ruby head, and I'm getting these deprecations from rbtrace with $VERBOSE == false (default level).


/tmp/bundle/ruby/2.8.0/gems/rbtrace-0.4.12/lib/rbtrace/rbtracer.rb:99: warning: File.exists? is deprecated; use File.exist? instead
(called from exists? at /tmp/bundle/ruby/2.8.0/gems/rbtrace-0.4.12/lib/rbtrace/rbtracer.rb:99)

cc @SamSaffron

SamSaffron commented 4 years ago

Looks good to me! Thanks Jean