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

11 lines
284 B
Ruby
Raw Normal View History

2009-12-15 00:35:55 -05:00
$:.unshift(File.dirname(__FILE__)) unless
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
module V8
2010-02-17 08:08:45 -05:00
VERSION = '0.5.1'
2009-12-15 00:35:55 -05:00
require 'v8/v8' #native glue
2009-12-18 02:48:06 -05:00
require 'v8/to'
require 'v8/context'
2009-12-18 02:48:06 -05:00
require 'v8/object'
2010-02-17 08:02:16 -05:00
require 'v8/tap'
2009-12-15 00:35:55 -05:00
end