-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrubystats.gemspec
28 lines (20 loc) · 1.09 KB
/
rubystats.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
$LOAD_PATH << File.expand_path("../lib", __FILE__)
require 'rubystats/version'
Gem::Specification.new do |s|
s.name = 'rubystats'
s.version = Rubystats::VERSION
s.license = "MIT"
s.summary = ''
s.description = "Ruby Stats is a port of the statistics libraries from PHPMath. Probability distributions include binomial, beta, and normal distributions with PDF, CDF and inverse CDF as well as Fisher's Exact Test."
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- Appraisals {test,spec,features,gemfiles}/*`.split("\n")
s.require_paths = ['lib']
s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
s.authors = ['Ilya Scharrenbroich', 'Bryan Donovan - http://www.bryandonovan.com', 'Phillip Baker']
s.homepage = 'https://github.com/phillbaker/rubystats'
s.add_development_dependency("minitest", ">= 4.2", "< 5.0")
s.add_development_dependency("hoe", ">= 1.7.0")
# matrix was removed from default gems in Ruby 3.1, see
# https://github.com/ruby/ruby/pull/4530 and https://stdgems.org/
s.add_runtime_dependency("matrix")
end