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

21 lines
900 B
Ruby
Raw Normal View History

2011-11-09 12:46:51 -06:00
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/v8/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Charles Lowell"]
2012-06-14 03:56:31 -05:00
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"
2011-11-09 12:46:51 -06:00
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"]
2011-11-09 12:46:51 -06:00
gem.version = V8::VERSION
gem.add_dependency 'ref'
2011-11-09 12:46:51 -06:00
end