ruby-stemmer 0.9.3-x86-mingw32 → 0.9.4-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/MIT-LICENSE +1 -1
- data/README.rdoc +4 -0
- data/Rakefile +12 -42
- data/ext/lingua/extconf.rb +5 -0
- data/lib/lingua/1.8/stemmer_native.so +0 -0
- data/lib/lingua/1.9/stemmer_native.so +0 -0
- data/lib/lingua/stemmer.rb +2 -1
- data/libstemmer_c/Makefile +7 -1
- data/test/helper.rb +7 -2
- data/test/lingua/test_stemmer.rb +6 -6
- metadata +77 -58
- data/TODO +0 -0
- data/VERSION +0 -1
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
ZDg5MzU3ZmFhN2IyMDIwMGE0NjFkOTA0ZjZkYmY2NWIyNjRkY2IxZg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
NTgxM2ExMTA3MjUxNzE4YmVkODYzYzNlNjk0Y2MxYTViMDBhYzgyNQ==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
Nzg5NWE1YWI2MDNhNGNiYzU5ODcyMjE1YWYwZWIwZDQwNWUzNDkxNTU2Mjg3
|
10
|
+
YjhlMGFiYTY0OTQ1YzFiMDA2NWJlOWI3OTA4NmM5MDc2ZTFiYzk2OTk0MTcz
|
11
|
+
ZjNhNzY2ZWY3MDY3NTgxZjNmOWY4ZTU1NmRjNWZiZDhjODg4YzM=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
ODczOGYyMWE3ZWY0YmViZTNjNmRlNDA5MDgyZDQzOTU0MmYyZTk3N2E0NWY1
|
14
|
+
YTk5MjZiZjJmMzg0Njc3YTJiMmFmNjQxOWE2ZmQ1ODVmYjAyYWU2NmViOTA3
|
15
|
+
YzdjZTZiNDRmMDUyNzdlY2Q3ZjlhNDQ1NWMzNmUyNTRkMzljYWY=
|
data/MIT-LICENSE
CHANGED
data/README.rdoc
CHANGED
@@ -52,6 +52,10 @@ For more details about libstemmer_c please visit the {SnowBall website}[http://s
|
|
52
52
|
|
53
53
|
There's also a Windows (Fat bin) compiled against ruby 1.9.3 and ruby 1.8.7.
|
54
54
|
|
55
|
+
gem install ruby-stemmer --platform=x86-mingw32
|
56
|
+
|
57
|
+
As far as I know the above should work with {rubyinstaller}[http://rubyinstaller.org/]. If if fails, you could try with:
|
58
|
+
|
55
59
|
gem install ruby-stemmer --platform=x86-mswin32
|
56
60
|
|
57
61
|
{It's known}[http://cl.ly/BX9o] to work under Windows XP.
|
data/Rakefile
CHANGED
@@ -1,63 +1,30 @@
|
|
1
1
|
require 'rubygems'
|
2
|
-
require '
|
2
|
+
require 'bundler/setup'
|
3
3
|
|
4
|
-
|
4
|
+
require 'rdoc/task'
|
5
|
+
require 'rake/testtask'
|
6
|
+
require "bundler/gem_tasks"
|
5
7
|
require 'rake/extensiontask'
|
8
|
+
require 'rubygems/package_task'
|
6
9
|
|
7
|
-
|
8
|
-
$jeweler = Jeweler::Tasks.new do |gem|
|
9
|
-
gem.name = "ruby-stemmer"
|
10
|
-
gem.version = File.read(File.expand_path(File.join(File.dirname(__FILE__),"VERSION"))).strip!
|
11
|
-
gem.summary = %Q{Expose libstemmer_c to Ruby.}
|
12
|
-
gem.description = %Q{Expose the bundled libstemmer_c library to Ruby.}
|
13
|
-
gem.email = "oancea@gmail.com"
|
14
|
-
gem.homepage = "http://github.com/aurelian/ruby-stemmer"
|
15
|
-
gem.authors = ["Aurelian Oancea", "Yury Korolev"]
|
16
|
-
gem.extensions = ["ext/lingua/extconf.rb"]
|
17
|
-
gem.rubyforge_project = "ruby-stemmer"
|
18
|
-
gem.files = FileList['lib/**/*.rb', 'README.rdoc', 'MIT-LICENSE', 'VERSION', 'Rakefile', 'libstemmer_c/**/*', 'ext/**/*', 'test/**/*']
|
19
|
-
%w(ext/lingua/*.so ext/lingua/*.bundle ext/lingua/Makefile ext/lingua/mkmf.log ext/lingua/*.o libstemmer_c/**/*.o libstemmer_c/stemwords).each do | f |
|
20
|
-
gem.files.exclude f
|
21
|
-
end
|
22
|
-
end
|
10
|
+
CLOBBER.include("libstemmer_c/**/*.o")
|
23
11
|
|
24
|
-
|
12
|
+
GEMSPEC = Gem::Specification.load("ruby-stemmer.gemspec")
|
25
13
|
|
26
|
-
require 'rake/testtask'
|
27
14
|
Rake::TestTask.new(:test) do |test|
|
28
15
|
test.libs << 'lib' << 'test'
|
29
16
|
test.pattern = 'test/**/test_*.rb'
|
30
17
|
test.verbose = true
|
31
18
|
end
|
32
19
|
|
33
|
-
|
34
|
-
require 'rcov/rcovtask'
|
35
|
-
Rcov::RcovTask.new do |test|
|
36
|
-
test.libs << 'test'
|
37
|
-
test.pattern = 'test/**/test_*.rb'
|
38
|
-
test.verbose = true
|
39
|
-
end
|
40
|
-
rescue LoadError
|
41
|
-
task :rcov do
|
42
|
-
abort "RCov is not available. In order to run rcov, you must: gem install rcov"
|
43
|
-
end
|
44
|
-
end
|
45
|
-
|
46
|
-
task :test => :check_dependencies
|
47
|
-
|
48
|
-
task :default => :test
|
49
|
-
|
50
|
-
CLOBBER.include("libstemmer_c/**/*.o")
|
51
|
-
|
52
|
-
Rake::ExtensionTask.new('ruby-stemmer', $jeweler.jeweler.gemspec) do |ext|
|
20
|
+
Rake::ExtensionTask.new('ruby-stemmer', GEMSPEC) do |ext|
|
53
21
|
ext.lib_dir = File.join(*['lib', 'lingua', ENV['FAT_DIR']].compact)
|
54
22
|
ext.ext_dir = File.join 'ext', 'lingua'
|
55
23
|
ext.cross_compile = true
|
56
24
|
ext.cross_platform = ['i386-mswin32-60', 'i386-mingw32']
|
57
|
-
ext.name
|
25
|
+
ext.name = 'stemmer_native'
|
58
26
|
end
|
59
27
|
|
60
|
-
require 'rdoc/task'
|
61
28
|
Rake::RDocTask.new do |rdoc|
|
62
29
|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
63
30
|
rdoc.rdoc_dir = 'rdoc'
|
@@ -68,3 +35,6 @@ Rake::RDocTask.new do |rdoc|
|
|
68
35
|
rdoc.rdoc_files.include('ext/lingua/stemmer.c')
|
69
36
|
rdoc.rdoc_files.include('MIT-LICENSE')
|
70
37
|
end
|
38
|
+
|
39
|
+
task :default => [:clobber, :compile, :test]
|
40
|
+
|
data/ext/lingua/extconf.rb
CHANGED
@@ -10,6 +10,11 @@ make= (RUBY_PLATFORM =~ /freebsd/)? 'gmake' : 'make'
|
|
10
10
|
|
11
11
|
# MacOS architecture mess up
|
12
12
|
if RUBY_PLATFORM =~ /darwin/
|
13
|
+
# Config has been deprecated since 1.9.3, and removed since 2.2.0
|
14
|
+
if defined?(RbConfig)
|
15
|
+
Config = RbConfig
|
16
|
+
end
|
17
|
+
|
13
18
|
# see: #issue/3, #issue/5
|
14
19
|
begin
|
15
20
|
ENV['ARCHFLAGS']= "-arch " + %x[file #{File.expand_path(File.join(Config::CONFIG['bindir'], Config::CONFIG['RUBY_INSTALL_NAME']))}].strip!.match(/executable (.+)$/)[1] unless ENV['ARCHFLAGS'].nil?
|
Binary file
|
Binary file
|
data/lib/lingua/stemmer.rb
CHANGED
@@ -4,6 +4,8 @@ else
|
|
4
4
|
require 'lingua/stemmer_native'
|
5
5
|
end
|
6
6
|
|
7
|
+
require 'lingua/version'
|
8
|
+
|
7
9
|
module Lingua
|
8
10
|
def self.stemmer(o, options={})
|
9
11
|
stemmer = Stemmer.new(options)
|
@@ -25,7 +27,6 @@ module Lingua
|
|
25
27
|
end
|
26
28
|
|
27
29
|
class Stemmer
|
28
|
-
VERSION = File.read(File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "VERSION"))).strip!
|
29
30
|
|
30
31
|
attr_reader :language
|
31
32
|
attr_reader :encoding
|
data/libstemmer_c/Makefile
CHANGED
data/test/helper.rb
CHANGED
data/test/lingua/test_stemmer.rb
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require 'helper'
|
3
3
|
|
4
|
-
class TestStemmer < Test
|
4
|
+
class TestStemmer < Minitest::Test
|
5
5
|
|
6
6
|
def test_stemmer_creation
|
7
7
|
assert_kind_of ::Lingua::Stemmer, ::Lingua::Stemmer.new
|
8
8
|
end
|
9
9
|
|
10
10
|
def test_exceptions
|
11
|
-
|
11
|
+
assert_raises ::Lingua::StemmerError do
|
12
12
|
# invalid encoding for language
|
13
13
|
::Lingua::Stemmer.new :language => "ro", :encoding => "ISO_8859_1"
|
14
14
|
end
|
15
|
-
|
15
|
+
assert_raises ::Lingua::StemmerError do
|
16
16
|
# invalid language
|
17
17
|
::Lingua::Stemmer.new :language => "cat"
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
21
|
def test_latin
|
22
|
-
|
23
|
-
|
24
|
-
|
22
|
+
::Lingua::Stemmer.new :language => "latin", :encoding => "ISO_8859_1"
|
23
|
+
rescue StandardError => error
|
24
|
+
flunk "Expected latin to be loaded but failed with #{error}"
|
25
25
|
end
|
26
26
|
|
27
27
|
def test_stem
|
metadata
CHANGED
@@ -1,39 +1,77 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-stemmer
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 9
|
9
|
-
- 3
|
10
|
-
version: 0.9.3
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.9.4
|
11
5
|
platform: x86-mingw32
|
12
|
-
authors:
|
6
|
+
authors:
|
13
7
|
- Aurelian Oancea
|
14
8
|
- Yury Korolev
|
15
9
|
autorequire:
|
16
10
|
bindir: bin
|
17
11
|
cert_chain: []
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
12
|
+
date: 2015-02-26 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rake-compiler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ~>
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 0.9.2
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ~>
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 0.9.2
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: minitest
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ~>
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 5.5.1
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ~>
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 5.5.1
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: rdoc
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ~>
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: 4.2.0
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ~>
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 4.2.0
|
22
56
|
description: Expose the bundled libstemmer_c library to Ruby.
|
23
57
|
email: oancea@gmail.com
|
24
58
|
executables: []
|
25
|
-
|
26
59
|
extensions: []
|
27
|
-
|
28
|
-
extra_rdoc_files:
|
29
|
-
- README.rdoc
|
30
|
-
- TODO
|
31
|
-
files:
|
32
|
-
- lib/lingua/stemmer.rb
|
60
|
+
extra_rdoc_files:
|
33
61
|
- README.rdoc
|
62
|
+
files:
|
34
63
|
- MIT-LICENSE
|
35
|
-
-
|
64
|
+
- README.rdoc
|
36
65
|
- Rakefile
|
66
|
+
- ext/lingua/extconf.rb
|
67
|
+
- ext/lingua/stemmer.c
|
68
|
+
- lib/lingua/1.8/stemmer_native.so
|
69
|
+
- lib/lingua/1.9/stemmer_native.so
|
70
|
+
- lib/lingua/stemmer.rb
|
71
|
+
- libstemmer_c/MANIFEST
|
72
|
+
- libstemmer_c/Makefile
|
73
|
+
- libstemmer_c/Makefile.windows
|
74
|
+
- libstemmer_c/README
|
37
75
|
- libstemmer_c/examples/stemwords.c
|
38
76
|
- libstemmer_c/include/libstemmer.h
|
39
77
|
- libstemmer_c/libstemmer/libstemmer.c
|
@@ -42,12 +80,8 @@ files:
|
|
42
80
|
- libstemmer_c/libstemmer/modules.txt
|
43
81
|
- libstemmer_c/libstemmer/modules_utf8.h
|
44
82
|
- libstemmer_c/libstemmer/modules_utf8.txt
|
45
|
-
- libstemmer_c/Makefile
|
46
|
-
- libstemmer_c/Makefile.windows
|
47
|
-
- libstemmer_c/MANIFEST
|
48
83
|
- libstemmer_c/mkinc.mak
|
49
84
|
- libstemmer_c/mkinc_utf8.mak
|
50
|
-
- libstemmer_c/README
|
51
85
|
- libstemmer_c/runtime/api.c
|
52
86
|
- libstemmer_c/runtime/api.h
|
53
87
|
- libstemmer_c/runtime/header.h
|
@@ -118,45 +152,30 @@ files:
|
|
118
152
|
- libstemmer_c/src_c/stem_UTF_8_swedish.h
|
119
153
|
- libstemmer_c/src_c/stem_UTF_8_turkish.c
|
120
154
|
- libstemmer_c/src_c/stem_UTF_8_turkish.h
|
121
|
-
- ext/lingua/extconf.rb
|
122
|
-
- ext/lingua/stemmer.c
|
123
155
|
- test/helper.rb
|
124
156
|
- test/lingua/test_stemmer.rb
|
125
|
-
- TODO
|
126
|
-
- lib/lingua/1.8/stemmer_native.so
|
127
|
-
- lib/lingua/1.9/stemmer_native.so
|
128
157
|
homepage: http://github.com/aurelian/ruby-stemmer
|
129
|
-
licenses:
|
130
|
-
|
158
|
+
licenses:
|
159
|
+
- MIT
|
160
|
+
metadata: {}
|
131
161
|
post_install_message:
|
132
162
|
rdoc_options: []
|
133
|
-
|
134
|
-
require_paths:
|
163
|
+
require_paths:
|
135
164
|
- lib
|
136
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
none: false
|
147
|
-
requirements:
|
148
|
-
- - ">="
|
149
|
-
- !ruby/object:Gem::Version
|
150
|
-
hash: 3
|
151
|
-
segments:
|
152
|
-
- 0
|
153
|
-
version: "0"
|
165
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
166
|
+
requirements:
|
167
|
+
- - ! '>='
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: 1.8.7
|
170
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - ! '>='
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0'
|
154
175
|
requirements: []
|
155
|
-
|
156
|
-
|
157
|
-
rubygems_version: 1.8.11
|
176
|
+
rubyforge_project:
|
177
|
+
rubygems_version: 2.4.3
|
158
178
|
signing_key:
|
159
|
-
specification_version:
|
179
|
+
specification_version: 4
|
160
180
|
summary: Expose libstemmer_c to Ruby.
|
161
181
|
test_files: []
|
162
|
-
|
data/TODO
DELETED
File without changes
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.9.3
|