numo-libsvm 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +2 -1
- data/CHANGELOG.md +3 -0
- data/Steepfile +1 -1
- data/lib/numo/libsvm/version.rb +1 -1
- data/numo-libsvm.gemspec +3 -6
- metadata +2 -3
- data/sig/patch.rbs +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f321e889c3d7a6a617f6700885d5c39f00272a4cd2aad82e2efadb6818fe78aa
|
4
|
+
data.tar.gz: bc8062c42b4f20cc1b6cfe11a2cebff4fc2881be180c92ca287e5f3c85b74a76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: faa13722b019804975e539f4f10a64bb602a3052529d885e168e343801a61a074af186efa6f0c8e124f03ed8b95cfc7067a7c06eda334d89a9c41f4775d18c2c
|
7
|
+
data.tar.gz: 28b0830bd53f280c6511013ca838bf29ed510cf8062b7f47425d15aa287418452c14ea7f98567ee459518be9aa946cee40d3401a9011169e3f51d64f64f96ca8
|
data/.github/workflows/build.yml
CHANGED
@@ -18,9 +18,10 @@ jobs:
|
|
18
18
|
git submodule sync --recursive
|
19
19
|
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
|
20
20
|
- name: Set up Ruby ${{ matrix.ruby }}
|
21
|
-
uses:
|
21
|
+
uses: ruby/setup-ruby@v1
|
22
22
|
with:
|
23
23
|
ruby-version: ${{ matrix.ruby }}
|
24
|
+
bundler-cache: true
|
24
25
|
- name: Build and test with Rake
|
25
26
|
run: |
|
26
27
|
gem install --no-document bundler
|
data/CHANGELOG.md
CHANGED
data/Steepfile
CHANGED
data/lib/numo/libsvm/version.rb
CHANGED
data/numo-libsvm.gemspec
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
1
|
lib = File.expand_path('lib', __dir__)
|
4
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
3
|
require 'numo/libsvm/version'
|
@@ -26,12 +24,11 @@ Gem::Specification.new do |spec|
|
|
26
24
|
# Specify which files should be added to the gem when it is released.
|
27
25
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
28
26
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
29
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
27
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|sig-deps)/}) }
|
30
28
|
end
|
31
29
|
|
32
|
-
|
33
|
-
|
34
|
-
submodule_relative_path = submodule_path.sub gem_dir, ''
|
30
|
+
submodule_path = `git submodule --quiet foreach pwd`.split($INPUT_RECORD_SEPARATOR).first
|
31
|
+
submodule_relative_path = submodule_path.sub("#{File.expand_path(__dir__)}/", '')
|
35
32
|
spec.files << "#{submodule_relative_path}/svm.cpp"
|
36
33
|
spec.files << "#{submodule_relative_path}/svm.h"
|
37
34
|
|
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: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- yoshoku
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: numo-narray
|
@@ -68,7 +68,6 @@ files:
|
|
68
68
|
- lib/numo/libsvm/version.rb
|
69
69
|
- numo-libsvm.gemspec
|
70
70
|
- sig/numo/libsvm.rbs
|
71
|
-
- sig/patch.rbs
|
72
71
|
homepage: https://github.com/yoshoku/numo-libsvm
|
73
72
|
licenses:
|
74
73
|
- BSD-3-Clause
|