-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibfacedetection.gemspec
41 lines (33 loc) · 1.7 KB
/
libfacedetection.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
37
38
39
40
41
# frozen_string_literal: true
$:.push File.expand_path("lib", __dir__)
require "libfacedetection/version"
Gem::Specification.new do |spec|
spec.name = "libfacedetection"
spec.version = Libfacedetection::VERSION
spec.authors = ["Fetlife", "Andrii Dmytrenko"]
spec.email = ["andrii@fetlife.com"]
spec.summary = "Face Detection gem wrapper for libfacedetection"
spec.description = "Face Detection gem wrapper for libfacedetection"
spec.homepage = "https://github.com/fetlife/facedetection-ruby"
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", "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 "ruby-vips"
spec.add_development_dependency "ffi"
spec.required_rubygems_version = Gem::Requirement.new(">= 3.4.0") if spec.respond_to? :required_rubygems_version=
# spec.add_development_dependency "rake-compiler-dock", "~> 1.2.2"
spec.metadata = { "github_repo" => "ssh://github.com/fetlife/facedetection-ruby" }
# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
end