ruby_native_statistics 1.0.1 → 1.0.2
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 +4 -4
- data/Gemfile +1 -8
- data/Gemfile.lock +3 -4
- data/changelog.md +9 -0
- data/lib/ruby_native_statistics/version.rb +1 -1
- data/ruby_native_statistics.gemspec +9 -2
- metadata +75 -9
- data/.github/ISSUE_TEMPLATE/bug_report.md +0 -31
- data/.github/workflows/main.yml +0 -29
- data/.vscode/c_cpp_properties.json +0 -21
- data/.vscode/settings.json +0 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40de8112c136a35b76b82e6871ec19c55920d4438ccb3cc69c8b26152314511f
|
|
4
|
+
data.tar.gz: 8301d32e559cff1f12d6e23d3422f18c1ddf6eb52c81bf687d18ff5b32e94722
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d24a273b66ab8488feb77952be3f610e721af32519b74c400f26113d7a26045be37c245379c818f913cc37d22f4667449d2455f1ba2bc77d8b0bed233a75d5e
|
|
7
|
+
data.tar.gz: 20c95a437d51a35f3c4b8d76717f6330d32952f9f965c4cde1b681de9784fa254819d01abac447d762d6ec453001358972756f438f25717f292edaf68abda453
|
data/Gemfile
CHANGED
|
@@ -1,10 +1,3 @@
|
|
|
1
1
|
source "https://rubygems.org"
|
|
2
2
|
|
|
3
|
-
gemspec
|
|
4
|
-
|
|
5
|
-
gem "rake", "~> 13.0"
|
|
6
|
-
gem "minitest", "~> 5.15"
|
|
7
|
-
gem "minitest-reporters", "~> 1.6"
|
|
8
|
-
gem "rake-compiler", "~> 1.1"
|
|
9
|
-
gem "simplecov", "~> 0.21", require: false
|
|
10
|
-
gem "simplecov-lcov", "~> 0.8", require: false
|
|
3
|
+
gemspec
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
ruby_native_statistics (1.0.
|
|
4
|
+
ruby_native_statistics (1.0.2)
|
|
5
|
+
rake-compiler (~> 1.1)
|
|
5
6
|
|
|
6
7
|
GEM
|
|
7
8
|
remote: https://rubygems.org/
|
|
@@ -33,11 +34,9 @@ PLATFORMS
|
|
|
33
34
|
DEPENDENCIES
|
|
34
35
|
minitest (~> 5.15)
|
|
35
36
|
minitest-reporters (~> 1.6)
|
|
36
|
-
rake (~> 13.0)
|
|
37
|
-
rake-compiler (~> 1.1)
|
|
38
37
|
ruby_native_statistics!
|
|
39
38
|
simplecov (~> 0.21)
|
|
40
39
|
simplecov-lcov (~> 0.8)
|
|
41
40
|
|
|
42
41
|
BUNDLED WITH
|
|
43
|
-
2.4.
|
|
42
|
+
2.4.12
|
data/changelog.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# Version 1.0.2
|
|
2
|
+
|
|
3
|
+
- Better differentiate `gemspec` and `Gemfile` between runtime and development dependencies
|
|
4
|
+
|
|
5
|
+
# Version 1.0.1
|
|
6
|
+
|
|
7
|
+
- Update all supported Ruby versions
|
|
8
|
+
- Update all dependencies
|
|
9
|
+
|
|
1
10
|
# Version 1.0.0
|
|
2
11
|
|
|
3
12
|
- Update all supported Ruby versions
|
|
@@ -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 =
|
|
13
|
+
spec.required_ruby_version = ">= 2.7.8"
|
|
14
14
|
|
|
15
15
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
16
16
|
|
|
@@ -18,8 +18,15 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
19
19
|
spec.metadata["changelog_uri"] = "#{spec.homepage}/changelog.md"
|
|
20
20
|
|
|
21
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
21
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(.github|.vscode|test|spec|features)/}) }
|
|
22
22
|
spec.require_paths = ["lib"]
|
|
23
23
|
|
|
24
24
|
spec.extensions = %w[ext/ruby_native_statistics/extconf.rb]
|
|
25
|
+
|
|
26
|
+
spec.add_runtime_dependency "rake-compiler", "~> 1.1"
|
|
27
|
+
|
|
28
|
+
spec.add_development_dependency "minitest", "~> 5.15"
|
|
29
|
+
spec.add_development_dependency "minitest-reporters", "~> 1.6"
|
|
30
|
+
spec.add_development_dependency "simplecov", "~> 0.21"
|
|
31
|
+
spec.add_development_dependency "simplecov-lcov", "~> 0.8"
|
|
25
32
|
end
|
metadata
CHANGED
|
@@ -1,15 +1,85 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_native_statistics
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cory Buecker
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
12
|
-
dependencies:
|
|
11
|
+
date: 2023-04-15 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rake-compiler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.1'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.1'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: minitest
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '5.15'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '5.15'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: minitest-reporters
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1.6'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1.6'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: simplecov
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0.21'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0.21'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: simplecov-lcov
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0.8'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0.8'
|
|
13
83
|
description:
|
|
14
84
|
email:
|
|
15
85
|
- cory.buecker@gmail.com
|
|
@@ -18,11 +88,7 @@ extensions:
|
|
|
18
88
|
- ext/ruby_native_statistics/extconf.rb
|
|
19
89
|
extra_rdoc_files: []
|
|
20
90
|
files:
|
|
21
|
-
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
|
22
|
-
- ".github/workflows/main.yml"
|
|
23
91
|
- ".gitignore"
|
|
24
|
-
- ".vscode/c_cpp_properties.json"
|
|
25
|
-
- ".vscode/settings.json"
|
|
26
92
|
- Gemfile
|
|
27
93
|
- Gemfile.lock
|
|
28
94
|
- README.md
|
|
@@ -57,14 +123,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
57
123
|
requirements:
|
|
58
124
|
- - ">="
|
|
59
125
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: 2.7.
|
|
126
|
+
version: 2.7.8
|
|
61
127
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
128
|
requirements:
|
|
63
129
|
- - ">="
|
|
64
130
|
- !ruby/object:Gem::Version
|
|
65
131
|
version: '0'
|
|
66
132
|
requirements: []
|
|
67
|
-
rubygems_version: 3.4.
|
|
133
|
+
rubygems_version: 3.4.12
|
|
68
134
|
signing_key:
|
|
69
135
|
specification_version: 4
|
|
70
136
|
summary: High performance, native (C) implementations of various statistical functions.
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Bug report
|
|
3
|
-
about: Create a report to help us improve
|
|
4
|
-
title: ''
|
|
5
|
-
labels: ''
|
|
6
|
-
assignees: ''
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
**Describe the bug**
|
|
11
|
-
A clear and concise description of what the bug is.
|
|
12
|
-
|
|
13
|
-
**To Reproduce**
|
|
14
|
-
Steps to reproduce the behavior:
|
|
15
|
-
1. Go to '...'
|
|
16
|
-
2. Click on '....'
|
|
17
|
-
3. Scroll down to '....'
|
|
18
|
-
4. See error
|
|
19
|
-
|
|
20
|
-
**Expected behavior**
|
|
21
|
-
A clear and concise description of what you expected to happen.
|
|
22
|
-
|
|
23
|
-
**Screenshots**
|
|
24
|
-
If applicable, add screenshots to help explain your problem.
|
|
25
|
-
|
|
26
|
-
**Desktop (please complete the following information):**
|
|
27
|
-
- OS: [e.g. iOS]
|
|
28
|
-
- Version [e.g. 22]
|
|
29
|
-
|
|
30
|
-
**Additional context**
|
|
31
|
-
Add any other context about the problem here.
|
data/.github/workflows/main.yml
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
name: Test suite
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
- push
|
|
5
|
-
|
|
6
|
-
env:
|
|
7
|
-
CI: true
|
|
8
|
-
|
|
9
|
-
jobs:
|
|
10
|
-
run-tests:
|
|
11
|
-
name: Run tests
|
|
12
|
-
runs-on: ubuntu-latest
|
|
13
|
-
strategy:
|
|
14
|
-
matrix:
|
|
15
|
-
ruby:
|
|
16
|
-
- 2.7.7
|
|
17
|
-
- 3.0.5
|
|
18
|
-
- 3.1.3
|
|
19
|
-
- 3.2.1
|
|
20
|
-
steps:
|
|
21
|
-
- uses: actions/checkout@v2
|
|
22
|
-
|
|
23
|
-
- uses: ruby/setup-ruby@v1
|
|
24
|
-
with:
|
|
25
|
-
ruby-version: ${{ matrix.ruby }}
|
|
26
|
-
|
|
27
|
-
- run: gem install bundler --version 2.4.7 --no-document
|
|
28
|
-
- run: bundle
|
|
29
|
-
- run: rake
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"configurations": [
|
|
3
|
-
{
|
|
4
|
-
"name": "Mac",
|
|
5
|
-
"includePath": [
|
|
6
|
-
"${workspaceFolder}/**",
|
|
7
|
-
"/Users/corybuecker/.asdf/installs/ruby/2.7.0/include/ruby-2.7.0",
|
|
8
|
-
"/Users/corybuecker/.asdf/installs/ruby/2.7.0/include/ruby-2.7.0/x86_64-darwin19"
|
|
9
|
-
],
|
|
10
|
-
"defines": [],
|
|
11
|
-
"macFrameworkPath": [
|
|
12
|
-
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"
|
|
13
|
-
],
|
|
14
|
-
"compilerPath": "/usr/bin/clang",
|
|
15
|
-
"cStandard": "c11",
|
|
16
|
-
"cppStandard": "c++17",
|
|
17
|
-
"intelliSenseMode": "clang-x64"
|
|
18
|
-
}
|
|
19
|
-
],
|
|
20
|
-
"version": 4
|
|
21
|
-
}
|
data/.vscode/settings.json
DELETED