-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathlibv8-node.gemspec
More file actions
33 lines (28 loc) · 1.05 KB
/
libv8-node.gemspec
File metadata and controls
33 lines (28 loc) · 1.05 KB
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
28
29
30
31
32
33
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
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/rubyjs/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 'base64'
s.add_development_dependency 'logger'
s.add_development_dependency 'mutex_m'
s.add_development_dependency 'rake', '~> 12'
s.add_development_dependency 'rubocop', '>= 1.8.0'
s.metadata['rubygems_mfa_required'] = 'true'
end