numo-libsvm 0.2.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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-libsvm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-08-15 00:00:00.000000000 Z
11
+ date: 2021-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: numo-narray
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '10.0'
47
+ version: '12.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '10.0'
54
+ version: '12.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake-compiler
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -92,9 +92,10 @@ extensions:
92
92
  - ext/numo/libsvm/extconf.rb
93
93
  extra_rdoc_files: []
94
94
  files:
95
+ - ".github/workflows/build.yml"
95
96
  - ".gitignore"
97
+ - ".gitmodules"
96
98
  - ".rspec"
97
- - ".travis.yml"
98
99
  - CHANGELOG.md
99
100
  - CODE_OF_CONDUCT.md
100
101
  - Gemfile
@@ -106,6 +107,8 @@ files:
106
107
  - ext/numo/libsvm/extconf.rb
107
108
  - ext/numo/libsvm/kernel_type.c
108
109
  - ext/numo/libsvm/kernel_type.h
110
+ - ext/numo/libsvm/libsvm/svm.cpp
111
+ - ext/numo/libsvm/libsvm/svm.h
109
112
  - ext/numo/libsvm/libsvmext.c
110
113
  - ext/numo/libsvm/libsvmext.h
111
114
  - ext/numo/libsvm/svm_model.c
@@ -122,8 +125,11 @@ files:
122
125
  homepage: https://github.com/yoshoku/numo-libsvm
123
126
  licenses:
124
127
  - BSD-3-Clause
125
- metadata: {}
126
- post_install_message:
128
+ metadata:
129
+ homepage_uri: https://github.com/yoshoku/numo-libsvm
130
+ source_code_uri: https://github.com/yoshoku/numo-libsvm
131
+ documentation_uri: https://yoshoku.github.io/numo-libsvm/doc/
132
+ post_install_message:
127
133
  rdoc_options: []
128
134
  require_paths:
129
135
  - lib
@@ -138,9 +144,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
138
144
  - !ruby/object:Gem::Version
139
145
  version: '0'
140
146
  requirements: []
141
- rubyforge_project:
142
- rubygems_version: 2.6.14.4
143
- signing_key:
147
+ rubygems_version: 3.1.4
148
+ signing_key:
144
149
  specification_version: 4
145
150
  summary: Numo::Libsvm is a Ruby gem binding to the LIBSVM library. Numo::Libsvm makes
146
151
  to use the LIBSVM functions with dataset represented by Numo::NArray.
@@ -1,14 +0,0 @@
1
- ---
2
- sudo: true
3
- os: linux
4
- dist: bionic
5
- language: ruby
6
- cache: bundler
7
- rvm:
8
- - '2.4'
9
- - '2.5'
10
- - '2.6'
11
-
12
- before_install:
13
- - sudo apt-get install -y libsvm-dev
14
- - gem install bundler -v 2.0.2