-
Notifications
You must be signed in to change notification settings - Fork 2
/
numo-pocketfft.gemspec
39 lines (33 loc) · 1.62 KB
/
numo-pocketfft.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'numo/pocketfft/version'
Gem::Specification.new do |spec|
spec.name = 'numo-pocketfft'
spec.version = Numo::Pocketfft::VERSION
spec.authors = ['yoshoku']
spec.email = ['yoshoku@outlook.com']
spec.summary = <<~MSG
Numo::Pocketfft provides functions for descrete Fourier Transform based on pocketfft.
MSG
spec.description = <<~MSG
Numo::Pocketfft provides functions for descrete Fourier Transform based on pocketfft.
MSG
spec.homepage = 'https://github.com/yoshoku/numo-pocketfft'
spec.license = 'BSD-3-Clause'
# 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.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(/^(test|spec|features|sig-deps)/) }
.select { |f| f.match(/\.(?:rb|rbs|h|c|md|txt)$/) }
end
spec.require_paths = ['lib']
spec.extensions = ['ext/numo/pocketfft/extconf.rb']
spec.metadata = {
'homepage_uri' => 'https://github.com/yoshoku/numo-pocketfft',
'changelog_uri' => 'https://github.com/yoshoku/numo-pocketfft/blob/main/CHANGELOG.md',
'source_code_uri' => 'https://github.com/yoshoku/numo-pocketfft',
'documentation_uri' => 'https://yoshoku.github.io/numo-pocketfft/doc/',
'bug_tracker_uri' => 'https://github.com/yoshoku/numo-pocketfft/issues'
}
spec.add_runtime_dependency 'numo-narray', '>= 0.9.1'
end