1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/therubyracer.gemspec
Charles Lowell fa2787ab4e Add dependency back on libv8
therubyracer now delegates all lookup for its v8
compilation dependencies to the libv8 gem.

if you pass the --with-system-v8 flag to the libv8
gem on install, try to configure therubyracer upon
compile with the following options.

--with-v8-include, --with-v8-lib and --with-v8-dir

Otherwise, it will configure therubyracer to use
the vendored version of v8.
2013-01-04 16:54:53 -06:00

21 lines
944 B
Ruby

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/v8/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Charles Lowell"]
gem.email = ["javascript-and-friends@googlegroups.com"]
gem.summary = "Embed the V8 JavaScript interpreter into Ruby"
gem.description = "Call JavaScript code and manipulate JavaScript objects from Ruby. Call Ruby code and manipulate Ruby objects from JavaScript."
gem.homepage = "http://github.com/cowboyd/therubyracer"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "therubyracer"
gem.extensions = ["ext/v8/extconf.rb"]
gem.require_paths = ["lib", "ext"]
gem.version = V8::VERSION
gem.add_dependency 'ref'
gem.add_dependency 'libv8', '~> 3.11.8.5'
end