-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathruby_native_statistics.gemspec
32 lines (23 loc) · 1.21 KB
/
ruby_native_statistics.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
require_relative "lib/ruby_native_statistics/version"
Gem::Specification.new do |spec|
spec.name = "ruby_native_statistics"
spec.version = RubyNativeStatistics::VERSION
spec.authors = ["Cory Buecker"]
spec.email = ["[email protected]"]
spec.license = "Unlicense"
spec.summary = "High performance, native (C) implementations of various statistical functions."
spec.homepage = "https://github.com/corybuecker/ruby-native-statistics"
spec.required_ruby_version = ">= 3.0.3"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/changelog.md"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(.github|.vscode|test|spec|features)/}) }
spec.require_paths = ["lib"]
spec.extensions = %w[ext/ruby_native_statistics/extconf.rb]
spec.add_runtime_dependency "rake-compiler", "~> 1.2"
spec.add_development_dependency "minitest", "~> 5.21"
spec.add_development_dependency "minitest-reporters", "~> 1.6"
spec.add_development_dependency "simplecov", "~> 0.21"
spec.add_development_dependency "simplecov-lcov", "~> 0.8"
end