1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00
libv8/lib/libv8.rb

16 lines
302 B
Ruby
Raw Normal View History

2011-05-24 14:17:58 -04:00
require 'pathname'
require 'libv8/version'
module Libv8
LIBRARY_PATH = Pathname(__FILE__).dirname.join('libv8').to_s
def self.library_path
LIBRARY_PATH
end
INCLUDE_PATH = Pathname(__FILE__).dirname.join('libv8', 'v8', 'include').to_s
def self.include_path
INCLUDE_PATH
2011-05-24 14:17:58 -04:00
end
end