-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharraybuffer.gemspec
More file actions
27 lines (20 loc) · 831 Bytes
/
arraybuffer.gemspec
File metadata and controls
27 lines (20 loc) · 831 Bytes
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
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "arraybuffer"
s.license = "MIT"
s.summary = "An array buffer (a.k.a. byte array) implementation for" \
+ "Ruby, implemented natively."
s.authors = ["André Diego Piske"]
s.email = ["andrepiske@gmail.com"]
s.homepage = "https://github.com/andrepiske/rb-arraybuffer"
s.files = Dir.glob([ "lib/**/*", "ext/**/*", "extconf.h" ])
s.require_paths = ["lib"]
s.version = "0.0.7"
s.metadata = {
"source_code_uri" => "https://github.com/andrepiske/rb-arraybuffer",
}
s.extensions = ["ext/arraybuffer/extconf.rb"]
s.required_ruby_version = ">= 3.0"
s.add_development_dependency "rspec", "~> 3.9"
s.add_development_dependency "rake-compiler", "~> 1.2"
end