forked from wasmerio/wasmer-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wasmer.gemspec
25 lines (19 loc) · 866 Bytes
/
wasmer.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "wasmer"
spec.version = "1.0.0"
spec.authors = ["Wasmer Engineering Team"]
spec.email = ["engineering@wasmer.io"]
spec.summary = "Run WebAssembly binaries."
spec.description = "Wasmer is a Ruby extension to run WebAssembly binaries."
spec.homepage = "https://github.com/wasmerio/wasmer-ruby"
spec.license = "MIT"
spec.extensions = %w(Rakefile)
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(examples|tests|doc)/}) }
end
spec.require_paths = %w(lib)
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 13.0"
end