diff options
| author | Kevin Newton <kddnewton@gmail.com> | 2023-11-10 00:31:07 -0500 |
|---|---|---|
| committer | Kevin Newton <kddnewton@gmail.com> | 2023-11-14 16:22:03 -0500 |
| commit | ed755181925da920b8a9b07e167e92f3950d1b2a (patch) | |
| tree | a4af62437a4415da2c5e871aa70f952500bdc8cf /lib | |
| parent | 80e379bda1aa38b601a3c010b401c566e1708189 (diff) | |
[ruby/prism] Rename librubyparser to libprism
librubyparser was an artifact of the prototype that was initially
named ruby-parser. Instead, this renames it to libprism to be
consistent with the actual name.
https://github.com/ruby/prism/commit/8600b06811
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/prism/ffi.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/prism/ffi.rb b/lib/prism/ffi.rb index 96102201b3..e1d3e0dca7 100644 --- a/lib/prism/ffi.rb +++ b/lib/prism/ffi.rb @@ -14,7 +14,7 @@ module Prism # Define the library that we will be pulling functions from. Note that this # must align with the build shared library from make/rake. - ffi_lib File.expand_path("../../build/librubyparser.#{RbConfig::CONFIG["SOEXT"]}", __dir__) + ffi_lib File.expand_path("../../build/libprism.#{RbConfig::CONFIG["SOEXT"]}", __dir__) # Convert a native C type declaration into a symbol that FFI understands. # For example: |
