rubystats 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d5175da9b495dae606b09aa31d28749aecea3186
4
- data.tar.gz: c5b88f1fb680e8cf3e145cecef48edf5d211ad69
3
+ metadata.gz: 2789811064d35c08bdf8aa20530b392515d065f6
4
+ data.tar.gz: b148705e2926210b822f42af9e2b51eddedce116
5
5
  SHA512:
6
- metadata.gz: a2256ea1de0b37962a8f3d5bdc14a33352d4a9a9d12c638df6f1c931464c145fcf1e50b82a123a7c34b75041fbc16b3e560dfca53983e90a132d1a1bc903c4ae
7
- data.tar.gz: 27f8ad23f16195d41786b58f002150d48bbe1a9af7ccaae2ee703c78637dffa7207479f38affdc2c9296e5fb2827b6a61d60897dab0a667710988ce735479bcf
6
+ metadata.gz: 817f2c326fbf480121f3f29f909ea04634cdf404240e17c1517f70443d4033b0dd5853974c3889e1facaa801c951361d5f36a8775fe65ee3e553c551b5685682
7
+ data.tar.gz: e2bc90eed10e16455dbb2721e3d101dd543b0ff2bf7cc4ee255ea540788770ea4ab98290e7169b246a5daa49cbceca7080732da5b8e01746c079581fa558bb0e
data/lib/rubystats.rb CHANGED
@@ -6,7 +6,10 @@ require 'rubystats/exponential_distribution'
6
6
  require 'rubystats/version'
7
7
 
8
8
  module Rubystats
9
-
10
9
  end
11
10
 
12
- include Rubystats
11
+ NormalDistribution = Rubystats::NormalDistribution
12
+ BinomialDistribution = Rubystats::BinomialDistribution
13
+ BetaDistribution = Rubystats::BetaDistribution
14
+ FishersExactTest = Rubystats::FishersExactTest
15
+ ExponentialDistribution = Rubystats::ExponentialDistribution
@@ -1,3 +1,3 @@
1
1
  module Rubystats
2
- VERSION = '0.2.5'
2
+ VERSION = '0.2.6'
3
3
  end
data/rubystats.gemspec CHANGED
@@ -4,6 +4,7 @@ require 'rubystats/version'
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'rubystats'
6
6
  s.version = Rubystats::VERSION
7
+ s.license = "MIT"
7
8
  s.summary = ''
8
9
  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."
9
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubystats
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Scharrenbroich
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-07-09 00:00:00.000000000 Z
13
+ date: 2017-07-24 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest
@@ -85,7 +85,8 @@ files:
85
85
  - test/tc_require_all.rb
86
86
  - test/ts_stats.rb
87
87
  homepage: https://github.com/phillbaker/rubystats
88
- licenses: []
88
+ licenses:
89
+ - MIT
89
90
  metadata: {}
90
91
  post_install_message:
91
92
  rdoc_options: []