diff options
author | Charles Oliver Nutter <[email protected]> | 2021-09-28 09:37:07 -0500 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2021-12-18 08:38:58 +0900 |
commit | 73da1c5ea3fcc5abb1f72f70f7a3e61683368177 () | |
tree | 5397ba7fc958f89cd4f1411641d19f48da52f81e | |
parent | 5a6baaba3881c04534c9ad959e427ade3d5e410b (diff) |
[ruby/pp] Use etc instead of .so for broader compatibility
The use of `etc.so` here requires that etc is always implemented as a C extension on-disk. However at least one impl – JRuby – currently implements it as an internal extension, loaded via a Ruby script. This require should simply use the base name of the library, `etc`, to allow Ruby-based implementations to load as well. https://.com/ruby/pp/commit/2061f994e0
-rw-r--r-- | lib/pp.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -433,7 +433,7 @@ end class File < IO # :nodoc: class Stat # :nodoc: def pretty_print(q) # :nodoc: - require 'etc.so' q.object_group(self) { q.breakable q.text sprintf("dev=0x%x", self.dev); q.comma_breakable |