-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdistributing_iterator.gemspec
More file actions
45 lines (39 loc) · 1.31 KB
/
distributing_iterator.gemspec
File metadata and controls
45 lines (39 loc) · 1.31 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
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true
$:.push File.expand_path("lib", __dir__)
require "distributing_iterator/version"
Gem::Specification.new do |spec|
spec.name = "distributing_iterator"
spec.version = DistributingIterator::VERSION
spec.authors = ["Fetlife", "Andrii Dmytrenko"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = "Distributing Iterator"
spec.description = "Distributing Iterator"
spec.homepage = "https://github.com/fetlife/distributing-iterator"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.platform = Gem::Platform::RUBY
spec.files = Dir[
"lib/**/*.rb",
"ext/**/*",
"extconf.rb",
"src/**/*.rs",
"benches/**/*.rs",
".cargo/*",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE"
]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.extensions = ["ext/distributing_iterator/extconf.rb"]
spec.add_dependency "rb_sys", "~> 0.9"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rake-compiler", "~> 1.2"
spec.add_development_dependency "minitest", "~> 5.0"
spec.metadata = {
"github_repo" => "ssh://github.com/fetlife/distributing-iterator",
"cargo_crate_name" => "distributing-iterator"
}
end