svmlightcli 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/bin/svm_classify +1 -1
- data/bin/svm_learn +1 -1
- data/lib/svmlightcli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52ef4a9b216670a3d9f086ec4425b8cd398d6209
|
4
|
+
data.tar.gz: bb132a3e5fedb573d37430fac660c4b7a8bf3dd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcd3eb2643627486247e5d519bb1d7c60cc00b1abcdf210b62e41083d97bfec7a9251c60f9c0d97bf3dc005f2c8993043fdb2ac86dc11af52f818ad8e700f682
|
7
|
+
data.tar.gz: c0ef6b35824bdfbaad1ecf6b3c5192ee4759ba9e5af852659823d45db7e76b6574ac6789489d70338fa2296d46cd59f51c6b1c98be2489d5d5c2c9579fe77888
|
data/Gemfile.lock
CHANGED
data/bin/svm_classify
CHANGED
@@ -18,6 +18,6 @@ gem 'svmlightcli', version
|
|
18
18
|
|
19
19
|
# Now we don't want to just load the ruby bin file, we want to execute it
|
20
20
|
# The reason is that it may not be necessarily a ruby file, could be native
|
21
|
-
system(Gem.bin_path('svmlightcli', 'svm_classify', version) + '_native')
|
21
|
+
system(Gem.bin_path('svmlightcli', 'svm_classify', version) + '_native', *ARGV)
|
22
22
|
# Capture the exit status of the binary and exit with the same
|
23
23
|
exit($?.exitstatus)
|
data/bin/svm_learn
CHANGED
@@ -18,6 +18,6 @@ gem 'svmlightcli', version
|
|
18
18
|
|
19
19
|
# Now we don't want to just load the ruby bin file, we want to execute it
|
20
20
|
# The reason is that it may not be necessarily a ruby file, could be native
|
21
|
-
system(Gem.bin_path('svmlightcli', 'svm_learn', version) + '_native')
|
21
|
+
system(Gem.bin_path('svmlightcli', 'svm_learn', version) + '_native', *ARGV)
|
22
22
|
# Capture the exit status of the binary and exit with the same
|
23
23
|
exit($?.exitstatus)
|
data/lib/svmlightcli/version.rb
CHANGED