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

14 lines
No EOL
351 B
Ruby

$:.unshift(File.dirname(__FILE__)) unless
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
module V8
VERSION = '0.7.1'
require 'v8/v8' #native glue
require 'v8/to'
require 'v8/context'
require 'v8/object'
require 'v8/array'
require 'v8/function'
require 'v8/tap'
require 'v8/access'
end