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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2ffa7de6b468ac58995f98791090f8cf343265bdb16288a34ebbc0049260daf
4
- data.tar.gz: bd009361127e443ea4029b1781d6bcbea198ffcaa1727342a94c86cc7ee9753c
3
+ metadata.gz: f321e889c3d7a6a617f6700885d5c39f00272a4cd2aad82e2efadb6818fe78aa
4
+ data.tar.gz: bc8062c42b4f20cc1b6cfe11a2cebff4fc2881be180c92ca287e5f3c85b74a76
5
5
  SHA512:
6
- metadata.gz: d654875107d12a3d48dbcc02ad8010b43c95c7b0454e6c13dab871688b488390b1d40d478603886fbed9b7aa56aff363324f6b9c85cf68b914964c4017cecb4a
7
- data.tar.gz: 79f55854f4f76151d2706893056250ddcbb5ba2f0bb0f4136acd1ad734962692c0bccc3f44aa4612d63f6b6d470e34ad05032f4ae335f0fb49461cadb990a942
6
+ metadata.gz: faa13722b019804975e539f4f10a64bb602a3052529d885e168e343801a61a074af186efa6f0c8e124f03ed8b95cfc7067a7c06eda334d89a9c41f4775d18c2c
7
+ data.tar.gz: 28b0830bd53f280c6511013ca838bf29ed510cf8062b7f47425d15aa287418452c14ea7f98567ee459518be9aa946cee40d3401a9011169e3f51d64f64f96ca8
@@ -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: actions/setup-ruby@v1
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
@@ -1,3 +1,6 @@
1
+ # 1.1.2
2
+ - Remove dependent gem's type declaration file from installation files.
3
+
1
4
  # 1.1.1
2
5
  - Fix version specifier of runtime dependencies.
3
6
 
data/Steepfile CHANGED
@@ -1,5 +1,5 @@
1
1
  target :lib do
2
- signature "sig"
2
+ signature "sig", "sig-deps"
3
3
  #
4
4
  check "lib" # Directory name
5
5
  # check "Gemfile" # File name
@@ -3,6 +3,6 @@
3
3
  module Numo
4
4
  module Libsvm
5
5
  # The version of Numo::Libsvm you are using.
6
- VERSION = '1.1.1'
6
+ VERSION = '1.1.2'
7
7
  end
8
8
  end
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
- gem_dir = File.expand_path(__dir__) + '/'
33
- submodule_path = `git submodule --quiet foreach pwd`.split($OUTPUT_RECORD_SEPARATOR).first
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.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-06-29 00:00:00.000000000 Z
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
data/sig/patch.rbs DELETED
@@ -1,8 +0,0 @@
1
- module Numo
2
- class NArray
3
- end
4
- class DFloat < NArray
5
- end
6
- class Int32 < NArray
7
- end
8
- end