mirror of
https://github.com/rubyjs/libv8
synced 2023-03-27 23:21:48 -04:00
10 lines
159 B
Ruby
10 lines
159 B
Ruby
|
require 'pathname'
|
||
|
|
||
|
require 'libv8/version'
|
||
|
|
||
|
module Libv8
|
||
|
def self.LIB_PATH
|
||
|
Pathname(__FILE__).dirname.join('libv8', 'build', 'v8', 'libv8.a')
|
||
|
end
|
||
|
end
|