rb-libsvm 1.4.0 → 1.4.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
- SHA1:
3
- metadata.gz: b45728dc2dd8a43e475299b21ca321ac440ec240
4
- data.tar.gz: bb1e9e59c680fa2bff83e37b636f8354327e63fe
2
+ SHA256:
3
+ metadata.gz: 35ec637fce275852d016e8038931919cca00f709afd6230855d222b73ed4a584
4
+ data.tar.gz: 0c37947f85297615662185473fe05565bf3a58f44ca4f816e441d9852a3115f6
5
5
  SHA512:
6
- metadata.gz: 04f4b3a390f705f41e78e1f6531af1117bfb944a1901fc17cee3e12a668d0ff58761ee6cbb69c59c474a66fc9549fdb1f9e1339b663e73b7d2e535232b8998ec
7
- data.tar.gz: 27d948de88f60491aa3ff226f074411dd168d821193e9f1b43db5a1f78f5aa75b1ffa01c6021e846f34fa3022199fd369bb9a8f397920250537f51125e138838
6
+ metadata.gz: 8728ec8d7c28156281240097da927be3183d5f19a415850c7c5b6d1dc62c3f504e43011581d8a0a0b727bf5efe51f6c4ecbc7f0066257b6eb866b91ba6c02609
7
+ data.tar.gz: 45b8aeb3b83d0bdd0392485024ab47eb4e3feea6d49e3456960e8ca39b5bea5ef3b70d9a1b52adc1dfe4321a16617199bbdedd8c63c479d451fbd52d7e6a430d
@@ -1,8 +1,7 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 1.8.7
4
- - 1.9.3
5
- - 2.1.5
6
- - 2.2.0
3
+ - 2.2.7
4
+ - 2.3.4
5
+ - 2.5.1
7
6
  - ruby-head
8
7
  sudo: false
data/README.md CHANGED
@@ -101,6 +101,8 @@ the license in the file LIBSVM-LICENSE.
101
101
 
102
102
  ### Posts about using SVMs with Ruby
103
103
 
104
+ https://www.practicalai.io/implementing-classification-using-a-svm-in-ruby/
105
+
104
106
  http://neovintage.blogspot.com/2011/11/text-classification-using-support.html
105
107
 
106
108
  http://www.igvita.com/2008/01/07/support-vector-machines-svm-in-ruby/
@@ -1,3 +1,3 @@
1
1
  module Libsvm
2
- VERSION = "1.4.0"
2
+ VERSION = "1.4.1"
3
3
  end
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.summary = %q{Ruby bindings for LIBSVM}
12
12
  s.description = %q{Self-contained LIBSVM package for Ruby (that doesn't use SWIG). LIBSVM is a popular implementation of SVM, a machine learning classifier.}
13
13
  s.required_ruby_version = '>= 1.8.7'
14
+ s.licenses = ['MIT']
14
15
 
15
16
  s.rubyforge_project = "rb-libsvm"
16
17
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rb-libsvm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - C. Florian Ebeling
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-09-18 00:00:00.000000000 Z
12
+ date: 2018-06-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake-compiler
@@ -82,7 +82,8 @@ files:
82
82
  - spec/spec_helper.rb
83
83
  - spec/usage_spec.rb
84
84
  homepage: https://github.com/febeling/rb-libsvm
85
- licenses: []
85
+ licenses:
86
+ - MIT
86
87
  metadata: {}
87
88
  post_install_message:
88
89
  rdoc_options: []
@@ -100,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
101
  version: '0'
101
102
  requirements: []
102
103
  rubyforge_project: rb-libsvm
103
- rubygems_version: 2.4.5
104
+ rubygems_version: 2.7.6
104
105
  signing_key:
105
106
  specification_version: 4
106
107
  summary: Ruby bindings for LIBSVM