ruby-statistics 4.0.0 → 4.0.1

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
  SHA256:
3
- metadata.gz: 27e203f810d4efc877c5684b20397691a6c15ff0822bffd066806913514eca5b
4
- data.tar.gz: 3585ea21ec02b2be95654010e0907ffa20ffa5ab59f5d8f3fa595f05e24378f3
3
+ metadata.gz: 45aad8d1de15385d2032cf93e0e08a2e8ec96c8bcbfb905c8afd74aec8df92aa
4
+ data.tar.gz: eaabdf151901455f82ff68af39b86bc4beb77d234075dbd0ef532877a919bdbf
5
5
  SHA512:
6
- metadata.gz: 2169076eca6216bbd847309b8c19eee02811cf4ec1e2f7684b998a874058449444b3410101f179ad31f169a6337350d871a1fbb47832a92017cbf256fdde00c4
7
- data.tar.gz: b004115fe3d165e1a82304c4194176edfa6827693f5a428818068eaee04f7c2b60e638cbdfd5a3a3cf664b2a6eba4432282ce48b2e00a2900c2d376348bff56e
6
+ metadata.gz: f9c6a992a54a50d814b7429a5835b852622b1c88305533ff2237717ad82406391aa1daba15ee66e14cdf0cbd03323edcd3fb1001b31b623618100633d9a26006
7
+ data.tar.gz: df6a87efa854ea654d3dc31be61c96d894413b12c7d2b808e37a8920c6c7f43cf9704f449fbcd20ffe22758fd823bdcf7039c6e4754479e3051c8a3d44a89f29
@@ -10,7 +10,7 @@ jobs:
10
10
  steps:
11
11
  - uses: actions/checkout@v4
12
12
  - name: Set up Ruby 3.3
13
- uses: ruby/setup-ruby@v1.183.0
13
+ uses: ruby/setup-ruby@v1.190.0
14
14
  with:
15
15
  ruby-version: 3.3
16
16
  - name: Build and test with Rake
@@ -26,7 +26,7 @@ jobs:
26
26
  steps:
27
27
  - uses: actions/checkout@v4
28
28
  - name: Set up Ruby 3.2
29
- uses: ruby/setup-ruby@v1.183.0
29
+ uses: ruby/setup-ruby@v1.190.0
30
30
  with:
31
31
  ruby-version: 3.2
32
32
  - name: Build and test with Rake
@@ -42,7 +42,7 @@ jobs:
42
42
  steps:
43
43
  - uses: actions/checkout@v4
44
44
  - name: Set up Ruby 3.0
45
- uses: ruby/setup-ruby@v1.183.0
45
+ uses: ruby/setup-ruby@v1.190.0
46
46
  with:
47
47
  ruby-version: 3.0
48
48
  - name: Build and test with Rake
@@ -58,7 +58,7 @@ jobs:
58
58
  steps:
59
59
  - uses: actions/checkout@v4
60
60
  - name: Set up Ruby 3.1
61
- uses: ruby/setup-ruby@v1.183.0
61
+ uses: ruby/setup-ruby@v1.190.0
62
62
  with:
63
63
  ruby-version: 3.1
64
64
  - name: Build and test with Rake
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  ![](https://github.com/estebanz01/ruby-statistics/actions/workflows/ruby.yml/badge.svg)
3
3
 
4
4
  ## Note regarding Versions 3.x and 4.x
5
- Hola! :wave: right now the gem got an update that introduced a breaking change in master where the Outermost namespace was changed to be `ruby_statistics` instead of `statistics`. This change is in _master_ already but not yet released. If you're relying on branch instead of gem version, you can checkout branch `3.x`. This branch will be supported but no additional features will be added.
5
+ Hola! :wave: right now the gem got an update that introduced a breaking change in master where the Outermost namespace was changed to be `ruby_statistics` instead of `statistics`. This change is in _master_ already and released in version 4.0. If you're relying on branch instead of gem version, you can checkout branch `3.x`. This branch will be supported but no additional features will be added.
6
6
 
7
7
  ---
8
8
 
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "statistics"
4
+ require "ruby-statistics"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -1,3 +1,3 @@
1
1
  module RubyStatistics
2
- VERSION = "4.0.0"
2
+ VERSION = "4.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-statistics
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - esteban zapata
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -118,6 +118,7 @@ files:
118
118
  - bin/setup
119
119
  - lib/enumerable.rb
120
120
  - lib/math.rb
121
+ - lib/ruby-statistics.rb
121
122
  - lib/ruby-statistics/distribution.rb
122
123
  - lib/ruby-statistics/distribution/bernoulli.rb
123
124
  - lib/ruby-statistics/distribution/beta.rb
@@ -141,7 +142,6 @@ files:
141
142
  - lib/ruby-statistics/statistical_test/t_test.rb
142
143
  - lib/ruby-statistics/statistical_test/wilcoxon_rank_sum_test.rb
143
144
  - lib/ruby-statistics/version.rb
144
- - lib/statistics.rb
145
145
  - ruby-statistics.gemspec
146
146
  homepage: https://github.com/estebanz01/ruby-statistics
147
147
  licenses:
File without changes