When I type `ri File::NULL`, got > Nothing known about File::NULL > ... but * `ruby -e 'p File::NULL'` prints `"/dev/null"` succesfully * Documents are already written in #7365 * I could read it with `ri File::File::Constants` ...tad (Tadashi Saito)
Really interesting, but what are the benefits for users who writes Ruby? Did the Rails app get faster enough? Or you have some other motivations?tad (Tadashi Saito)
I could reproduce too with "Test code". Also, I could reproduce with simpler code below. ### Gemfile ``` ruby source "https://rubygems.org" gem "csv", "1.0.0" ``` ### test.rb ```ruby require "csv" p csv: CSV::VERS...tad (Tadashi Saito)