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

8 lines
191 B
Ruby
Executable file

#!/usr/bin/env ruby
lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
$:.unshift(lib) if File.exists?(lib)
require 'v8'
require 'v8/cli'
V8::CLI.run(File.basename(__FILE__), ARGV)