thundersvm 0.2.0 → 0.2.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: 1175e937906ed249f4561bb60b3314c5f4b9320d9de3b5fd13c5106af36ff7a0
4
- data.tar.gz: 8938ae2067eaac617b9f219a05347cad4caf938cf8af6509e5a6038ccfb8b7ef
3
+ metadata.gz: 1e7eb63f9638a02ed4a20ff56b9063879197e56ddc5fd5e035aed4ade2264aba
4
+ data.tar.gz: 9e872a2747e3a05b54d6ef6ac4043c7c2928700a1416adea7d0865b5cec9de16
5
5
  SHA512:
6
- metadata.gz: e5e725aa97bc22c8a15e333c35207edfdc05a690f3f0c7b963c72de38c21251dc0033cb2a3e30424cca86faea51430b2ecd759183b35b3b283ce2e7e40d248a4
7
- data.tar.gz: 0363aca1169923a2838373da19bc3c9eb334b33213bb489df42f4849fb1f7526d0b7ac898719349c38252ae509b45307178947f3af13095172d81263121fa52a
6
+ metadata.gz: 12f26fbb28fd992c871c92888289cded51d3c847aa5102cc85ad30296f2a2a8816d9351ae2cde74389a42f16050ae5cdb91558acc96a8ce108013eed9ffd6423
7
+ data.tar.gz: 734657f29d9cf4da711bd689c859ffd7023e1eeacf3b262b59c1769d84442c658025f15521fbf0abab5ee8f31bdd41682eeae6a1e7d067a0a6966cff5bf89fec
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.2.1 (2024-12-29)
2
+
3
+ - Fixed warning with Ruby 3.4
4
+
1
5
  ## 0.2.0 (2023-04-16)
2
6
 
3
7
  - Added shared library for Mac ARM
data/NOTICE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  Copyright 2017 ThunderSVM Developers
2
- Copyright 2019-2021 Andrew Kane
2
+ Copyright 2019-2024 Andrew Kane
3
3
 
4
4
  Licensed under the Apache License, Version 2.0 (the "License");
5
5
  you may not use this file except in compliance with the License.
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  For a great intro on support vector machines, check out [this video](https://www.youtube.com/watch?v=efR1C6CvhmE).
8
8
 
9
- [![Build Status](https://github.com/ankane/thundersvm-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/thundersvm-ruby/actions)
9
+ [![Build Status](https://github.com/ankane/thundersvm-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/thundersvm-ruby/actions)
10
10
 
11
11
  ## Installation
12
12
 
@@ -1,3 +1,3 @@
1
1
  module ThunderSVM
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
data/lib/thundersvm.rb CHANGED
@@ -4,10 +4,10 @@ require "fileutils"
4
4
  require "tempfile"
5
5
 
6
6
  # modules
7
- require "thundersvm/model"
8
- require "thundersvm/classifier"
9
- require "thundersvm/regressor"
10
- require "thundersvm/version"
7
+ require_relative "thundersvm/model"
8
+ require_relative "thundersvm/classifier"
9
+ require_relative "thundersvm/regressor"
10
+ require_relative "thundersvm/version"
11
11
 
12
12
  module ThunderSVM
13
13
  class Error < StandardError; end
metadata CHANGED
@@ -1,16 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thundersvm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-04-17 00:00:00.000000000 Z
12
- dependencies: []
13
- description:
10
+ date: 2024-12-29 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: fiddle
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
14
26
  email: andrew@ankane.org
15
27
  executables: []
16
28
  extensions: []
@@ -35,7 +47,6 @@ homepage: https://github.com/ankane/thundersvm-ruby
35
47
  licenses:
36
48
  - Apache-2.0
37
49
  metadata: {}
38
- post_install_message:
39
50
  rdoc_options: []
40
51
  require_paths:
41
52
  - lib
@@ -50,8 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
50
61
  - !ruby/object:Gem::Version
51
62
  version: '0'
52
63
  requirements: []
53
- rubygems_version: 3.4.10
54
- signing_key:
64
+ rubygems_version: 3.6.2
55
65
  specification_version: 4
56
66
  summary: High performance parallel SVMs for Ruby
57
67
  test_files: []