Sha256: 5a06197b0803429c8a90524f93072369180b26ec8b1c54ebe6f6d3bc902cc8c2
Contents?: true
Size: 641 Bytes
Versions: 72
Compression:
Stored size: 641 Bytes
Contents
require 'rbconfig' require 'shellwords' module Libv8 module Paths module_function def include_paths [Shellwords.escape(File.join(vendored_source_path, 'include'))] end def object_paths [Shellwords.escape(File.join(vendored_source_path, 'out.gn', 'libv8', 'obj', "libv8_monolith.#{config['LIBEXT']}"))] end def config RbConfig::MAKEFILE_CONFIG end def vendored_source_path File.expand_path "../../../vendor/v8", __FILE__ end end end
Version data entries
72 entries across 72 versions & 3 rubygems