-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbytebuffer.gemspec
31 lines (24 loc) · 1.08 KB
/
bytebuffer.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
28
29
30
31
require_relative 'lib/bytebuffer/version'
Gem::Specification.new do |spec|
spec.name = 'bytebuffer'
spec.version = ByteBuffer::VERSION
spec.summary = 'A gem wrapping the bytebuffer crate using FFI.'
spec.description = 'A gem that provides a ByteBuffer class based on the bytebuffer rust crate.'
spec.homepage = 'https://github.com/sickday/bytebuffer-rb'
spec.license = 'BSD-3-Clause'
spec.author = 'Patrick W.'
spec.email = '[email protected]'
spec.metadata = {
"homepage_uri" => 'https://github.com/sickday/bytebuffer-rb',
"documentation_uri" => 'https://sickday.github.io/bytebuffer-rb/'
}
spec.required_ruby_version = '>= 3.1.0'
spec.add_runtime_dependency 'ffi', '~> 1.17'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rake-compiler', '~> 1.2'
spec.add_development_dependency 'rb_sys', '~> 0.9'
spec.add_development_dependency 'rspec', '~> 3.12'
spec.extensions = %w(ext/bytebuffer/extconf.rb)
spec.require_paths = %w(lib)
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|git)/}) }
end