svmlightcli 0.1.0

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.
@@ -0,0 +1,6 @@
1
+ require "svmlightcli/version"
2
+ require "svmlightcli/svmlightcli"
3
+
4
+ module Svmlightcli
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,3 @@
1
+ module Svmlightcli
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'svmlightcli/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "svmlightcli"
8
+ spec.version = Svmlightcli::VERSION
9
+ spec.authors = ["Hossam Hammady"]
10
+ spec.email = ["github@hammady.net"]
11
+
12
+ spec.summary = %q{svm_light command line gem wrapper offering svm_learn and svm_classify}
13
+ spec.description = %q{This is a convenience gem wrapper for the svm_light command line binaries (svm_learn and svm_classify). No Ruby interfaces.}
14
+ spec.homepage = "https://github.com/hammady/svmlightcli"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "bin"
21
+ spec.executables = ["svm_learn", "svm_classify"]
22
+ spec.require_paths = ["lib"]
23
+ spec.extensions = ["ext/svmlightcli/extconf.rb"]
24
+
25
+ spec.add_development_dependency "bundler", "~> 1.14"
26
+ spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "rake-compiler"
28
+ end
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: svmlightcli
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Hossam Hammady
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-05-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.14'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake-compiler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: This is a convenience gem wrapper for the svm_light command line binaries
56
+ (svm_learn and svm_classify). No Ruby interfaces.
57
+ email:
58
+ - github@hammady.net
59
+ executables:
60
+ - svm_learn
61
+ - svm_classify
62
+ extensions:
63
+ - ext/svmlightcli/extconf.rb
64
+ extra_rdoc_files: []
65
+ files:
66
+ - ".gitignore"
67
+ - Gemfile
68
+ - Gemfile.lock
69
+ - LICENSE.txt
70
+ - README.md
71
+ - Rakefile
72
+ - bin/console
73
+ - bin/setup
74
+ - bin/svm_classify
75
+ - bin/svm_learn
76
+ - ext/svmlightcli/Makefile
77
+ - ext/svmlightcli/extconf.rb
78
+ - ext/svmlightcli/kernel.h
79
+ - ext/svmlightcli/svm_classify.c
80
+ - ext/svmlightcli/svm_common.c
81
+ - ext/svmlightcli/svm_common.h
82
+ - ext/svmlightcli/svm_hideo.c
83
+ - ext/svmlightcli/svm_learn.c
84
+ - ext/svmlightcli/svm_learn.h
85
+ - ext/svmlightcli/svm_learn_main.c
86
+ - lib/svmlightcli.rb
87
+ - lib/svmlightcli/version.rb
88
+ - svmlightcli.gemspec
89
+ homepage: https://github.com/hammady/svmlightcli
90
+ licenses:
91
+ - MIT
92
+ metadata: {}
93
+ post_install_message:
94
+ rdoc_options: []
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubyforge_project:
109
+ rubygems_version: 2.5.1
110
+ signing_key:
111
+ specification_version: 4
112
+ summary: svm_light command line gem wrapper offering svm_learn and svm_classify
113
+ test_files: []