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

27 lines
984 B
Ruby
Raw Normal View History

2009-12-15 07:35:55 +02:00
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "v8/version"
2011-05-10 14:50:21 -05:00
require 'pathname'
2009-12-15 07:35:55 +02:00
Gem::Specification.new do |s|
s.name = s.rubyforge_project = "therubyracer"
s.summary = "Embed the V8 Javascript interpreter into Ruby"
s.version = V8::VERSION
2009-12-15 07:35:55 +02:00
s.authors = ["Charles Lowell", "Bill Robertson"]
s.description = "Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript."
s.homepage = "http://github.com/cowboyd/therubyracer"
s.email = "cowboyd@thefrontside.net"
2011-05-10 14:50:21 -05:00
root = Pathname(__FILE__).dirname
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
2009-12-15 07:35:55 +02:00
s.extensions = ["ext/v8/extconf.rb"]
s.require_paths = ["lib", "ext"]
2009-12-15 07:35:55 +02:00
2011-05-31 14:41:51 -05:00
s.add_dependency "libv8", "~> 3.3.10"
2011-05-27 12:37:02 -05:00
2011-10-07 07:45:52 -05:00
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 2.0"
s.add_development_dependency "rake-compiler"
2009-12-15 07:35:55 +02:00
end