-
Notifications
You must be signed in to change notification settings - Fork 0
/
distributing_iterator.gemspec
36 lines (29 loc) · 1.49 KB
/
distributing_iterator.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
32
33
34
35
36
# 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/fetlife-web"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.platform = Gem::Platform::RUBY
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir["lib/**/*.rb", "src/**/*.rs", "benches/**/*.rs", ".cargo/*", "Cargo.toml", "Cargo.lock", "README.md", "LICENSE.txt"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.extensions = ["Cargo.toml"]
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "gem-compiler"
spec.add_development_dependency "ffi"
spec.required_rubygems_version = Gem::Requirement.new(">= 3.4.0") if spec.respond_to? :required_rubygems_version=
spec.metadata = { "github_repo" => "ssh://github.com/fetlife/fetlife-web" }
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
end