forked from rubyjs/therubyracer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththerubyracer.gemspec
23 lines (19 loc) · 1.02 KB
/
therubyracer.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.expand_path('../lib/v8/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Charles Lowell"]
gem.email = ["[email protected]"]
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.license = 'MIT'
gem.post_install_message = "Unmaintened gem. Please consider using `mini_racer` instead."
gem.add_dependency 'ref'
gem.add_dependency 'libv8', '~> 8.4.255.0'
end