ruby_native_statistics 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73a2fd8450ce06d2b1d1292bfb91e41e6d764651b850895a9b85fd1d9c2a9596
4
- data.tar.gz: 0ca7e20b6b91e1eacef10a844a07819fb5562fdc7e44c0ecbf268ff5134b69b5
3
+ metadata.gz: 02babe63738371325514e46cb004f2dcf0bbc5afe75be8a41b5b55b5e31778e9
4
+ data.tar.gz: c12367930a9423a9020788d6bf007d1e1cfc6b76f5138138501ecbc80a2eed91
5
5
  SHA512:
6
- metadata.gz: a04f40565730406b34a3591d734e9d33286d41abc19ff49736d715f91b916995e9cdc9b1d6014c8b7745fe44aad1701bdd5dba49aee0e0ab3f39f6fab85a430b
7
- data.tar.gz: b0cc9f0fff6e26fbbfab5b27d69cfe7b7c19465944a1e0be14455380a312d536ff388246fe1766734bd1b210420acc04f58a71e07448275c6cbf5f19a1e9c969
6
+ metadata.gz: b3aac20d5c1bd0905c391b697ff77bec23b75ee63785fe20361db59da1cae4a6f122b067d6ee6fce8f28e38ebaead9c9a3a7cbd3dd05844b8fb9672e97e041c3
7
+ data.tar.gz: e9befa3ee31e586aa261681eddb562ff86399ba475e086eb424ba954521c34fede0fccd0cc9010b0c11c299347b49b9fdc241e6bf2fe54a4c16eef0764cf19f5
@@ -13,17 +13,17 @@ jobs:
13
13
  strategy:
14
14
  matrix:
15
15
  ruby:
16
- - 2.6.9
17
- - 2.7.5
18
- - 3.0.3
19
- - 3.1.0
16
+ - 2.7.7
17
+ - 3.0.5
18
+ - 3.1.3
19
+ - 3.2.1
20
20
  steps:
21
21
  - uses: actions/checkout@v2
22
-
22
+
23
23
  - uses: ruby/setup-ruby@v1
24
24
  with:
25
25
  ruby-version: ${{ matrix.ruby }}
26
26
 
27
- - run: gem install bundler --version 2.3.4 --no-document
27
+ - run: gem install bundler --version 2.4.7 --no-document
28
28
  - run: bundle
29
29
  - run: rake
data/Gemfile CHANGED
@@ -4,7 +4,7 @@ gemspec
4
4
 
5
5
  gem "rake", "~> 13.0"
6
6
  gem "minitest", "~> 5.15"
7
- gem "minitest-reporters", "~> 1.4"
7
+ gem "minitest-reporters", "~> 1.6"
8
8
  gem "rake-compiler", "~> 1.1"
9
9
  gem "simplecov", "~> 0.21", require: false
10
10
  gem "simplecov-lcov", "~> 0.8", require: false
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby_native_statistics (1.0.0)
4
+ ruby_native_statistics (1.0.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -9,30 +9,30 @@ GEM
9
9
  ansi (1.5.0)
10
10
  builder (3.2.4)
11
11
  docile (1.4.0)
12
- minitest (5.15.0)
13
- minitest-reporters (1.4.3)
12
+ minitest (5.17.0)
13
+ minitest-reporters (1.6.0)
14
14
  ansi
15
15
  builder
16
16
  minitest (>= 5.0)
17
17
  ruby-progressbar
18
18
  rake (13.0.6)
19
- rake-compiler (1.1.7)
19
+ rake-compiler (1.2.1)
20
20
  rake
21
21
  ruby-progressbar (1.11.0)
22
- simplecov (0.21.2)
22
+ simplecov (0.22.0)
23
23
  docile (~> 1.1)
24
24
  simplecov-html (~> 0.11)
25
25
  simplecov_json_formatter (~> 0.1)
26
26
  simplecov-html (0.12.3)
27
27
  simplecov-lcov (0.8.0)
28
- simplecov_json_formatter (0.1.3)
28
+ simplecov_json_formatter (0.1.4)
29
29
 
30
30
  PLATFORMS
31
- ruby
31
+ arm64-darwin-22
32
32
 
33
33
  DEPENDENCIES
34
34
  minitest (~> 5.15)
35
- minitest-reporters (~> 1.4)
35
+ minitest-reporters (~> 1.6)
36
36
  rake (~> 13.0)
37
37
  rake-compiler (~> 1.1)
38
38
  ruby_native_statistics!
@@ -40,4 +40,4 @@ DEPENDENCIES
40
40
  simplecov-lcov (~> 0.8)
41
41
 
42
42
  BUNDLED WITH
43
- 2.3.3
43
+ 2.4.7
@@ -1,3 +1,3 @@
1
1
  module RubyNativeStatistics
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.summary = "High performance, native (C) implementations of various statistical functions."
11
11
  spec.homepage = "https://github.com/corybuecker/ruby-native-statistics"
12
12
 
13
- spec.required_ruby_version = Gem::Requirement.new(">= 2.6")
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.7.7")
14
14
 
15
15
  spec.metadata["allowed_push_host"] = "https://rubygems.org"
16
16
 
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_native_statistics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cory Buecker
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-05 00:00:00.000000000 Z
11
+ date: 2023-03-14 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description:
13
+ description:
14
14
  email:
15
15
  - cory.buecker@gmail.com
16
16
  executables: []
@@ -49,7 +49,7 @@ metadata:
49
49
  homepage_uri: https://github.com/corybuecker/ruby-native-statistics
50
50
  source_code_uri: https://github.com/corybuecker/ruby-native-statistics
51
51
  changelog_uri: https://github.com/corybuecker/ruby-native-statistics/changelog.md
52
- post_install_message:
52
+ post_install_message:
53
53
  rdoc_options: []
54
54
  require_paths:
55
55
  - lib
@@ -57,15 +57,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
- version: '2.6'
60
+ version: 2.7.7
61
61
  required_rubygems_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
65
  version: '0'
66
66
  requirements: []
67
- rubygems_version: 3.0.3.1
68
- signing_key:
67
+ rubygems_version: 3.4.7
68
+ signing_key:
69
69
  specification_version: 4
70
70
  summary: High performance, native (C) implementations of various statistical functions.
71
71
  test_files: []