diff options
| author | Mike Dalessio <mike.dalessio@shopify.com> | 2023-07-18 16:25:52 -0400 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2023-08-16 17:47:32 -0700 |
| commit | 0f8091947debc467b58a2b04c150dc7a38026ed3 (patch) | |
| tree | d00d07f336bb28e415213b5b87c466e5bfe66906 | |
| parent | c5dad5f1d74e4d1acbae943e00a9465a7c921fa5 (diff) | |
[ruby/yarp] Move the gem's C extension into lib/yarp/
and change the require from "yarp.so" to "yarp/yarp", which is more
aligned with existing community conventions for gems.
https://github.com/ruby/yarp/commit/64b70e2658
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/8226
| -rw-r--r-- | lib/yarp.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/yarp.rb b/lib/yarp.rb index 8730ef6f0f..39ff7e3269 100644 --- a/lib/yarp.rb +++ b/lib/yarp.rb @@ -240,4 +240,5 @@ require_relative "yarp/node" require_relative "yarp/ripper_compat" require_relative "yarp/serialize" require_relative "yarp/pack" -require "yarp.so" + +require "yarp/yarp" |
