forked from rubyjs/libv8-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libv8-node.gemspec
27 lines (23 loc) · 882 Bytes
/
libv8-node.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'libv8/node/version'
Gem::Specification.new do |s|
s.name = 'libv8-node'
s.version = Libv8::Node::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['']
s.email = ['']
s.homepage = 'https://github.com/sqreen/ruby-libv8-node'
s.summary = "Node.JS's V8 JavaScript engine"
s.description = "Node.JS's V8 JavaScript engine for multiplatform goodness"
s.license = 'MIT'
s.files = Dir['ext/**/*.rb'] +
Dir['lib/**/*.rb'] +
Dir['libexec/*'] +
Dir['patch/*'] +
Dir['sums/*'] +
['LICENSE', 'README.md', 'CHANGELOG.md']
s.extensions = ['ext/libv8-node/extconf.rb']
s.require_paths = ['lib', 'ext']
s.add_development_dependency 'rake', '~> 12'
s.add_development_dependency 'rubocop', '~> 0.50.0'
end