ruby-stemmer 0.9.4 → 0.9.5

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +14 -2
  3. data/lib/lingua/version.rb +7 -0
  4. metadata +16 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5dbc48a9cab081a36f22eed41424dd6d7341cd2b
4
- data.tar.gz: db5d8748469945014bd36c3f79535863ca8b8543
3
+ metadata.gz: 921682e1c2e0bc94df0d22e3bfc87551d4d025f7
4
+ data.tar.gz: 3f77c9a8338e89a2dd2b6bc65d65e73c34acc279
5
5
  SHA512:
6
- metadata.gz: 7fbeec56ffd4475f7e84b7242be98571abe40c1e610dc73dd44686b91cf21eb213b35507efeffb5c40c6a26508ab9b4f5ba535dc0eb49ba81b8309990aace444
7
- data.tar.gz: e325e7d527f3f6343756fa183720a9655c4cef188a0ef6a9252ef595d27509b64a988fa5c76b1b591a9f50e58d4b35a290d6f600d21632ccb2532fb9b10ff7c1
6
+ metadata.gz: e8bf88497cbc65e6c36de8afced0b15ef28563b311f5ce044fa90fd6fccd96ab56422176a200e3674a896d3b57ad8d4dba45b537a20e1cd883d36f54f95e55eb
7
+ data.tar.gz: b64abc7f9aa9912ad29b4e6803abbbb4dbfda3d30244501944699fa4fd07c4b2090463de825a06da0a821b1614ff8db3ca101c4183d91e9138bf5619d732c3e8
data/README.rdoc CHANGED
@@ -1,5 +1,7 @@
1
1
  = Ruby-Stemmer {Project Status}[http://stillmaintained.com/aurelian/ruby-stemmer.png]
2
2
 
3
+ rdoc-image:https://travis-ci.org/aurelian/ruby-stemmer.svg?branch=master
4
+
3
5
  Ruby-Stemmer exposes SnowBall API to Ruby.
4
6
 
5
7
  This package includes libstemmer_c library released under BSD licence
@@ -50,7 +52,7 @@ For more details about libstemmer_c please visit the {SnowBall website}[http://s
50
52
 
51
53
  ==== Windows
52
54
 
53
- There's also a Windows (Fat bin) compiled against ruby 1.9.3 and ruby 1.8.7.
55
+ There's also a Windows (Fat bin) compiled against ruby versions: 1.8.7, 1.9.3, 2.1.5, 2.2.0
54
56
 
55
57
  gem install ruby-stemmer --platform=x86-mingw32
56
58
 
@@ -68,6 +70,16 @@ As far as I know the above should work with {rubyinstaller}[http://rubyinstaller
68
70
  $ rake compile #<== builds the extension do'h
69
71
  $ rake test
70
72
 
73
+ ==== Cross Compiling
74
+
75
+ Install {rake-compiler-dev-box}[https://github.com/tjschuck/rake-compiler-dev-box] and follow the setup.
76
+ Inside vagrant box run:
77
+
78
+ $ cd /vagrant
79
+ $ RUBY_CC_VERSION=1.8.7:1.9.3:2.1.5:2.2.0 package_win32_fat_binary ruby-stemmer
80
+
81
+ Idea is to have same builds as in travis.yml.
82
+
71
83
  == NOT A BUG
72
84
 
73
85
  The stemming process is an algorithm to allow one to find the stem of an word (not the root of it).
@@ -102,7 +114,7 @@ For further reference on stem vs. root, please check wikipedia articles on the t
102
114
 
103
115
  == Copyright
104
116
 
105
- Copyright (c) 2008-2011 {Aurelian Oancea}[http://locknet.ro]. See MIT-LICENSE for details.
117
+ Copyright (c) 2008-2015 {Aurelian Oancea}[http://locknet.ro]. See MIT-LICENSE for details.
106
118
 
107
119
  == Contributors
108
120
 
@@ -0,0 +1,7 @@
1
+ module Lingua
2
+
3
+ class Stemmer
4
+
5
+ VERSION = "0.9.5"
6
+ end
7
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-stemmer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aurelian Oancea
@@ -30,6 +30,9 @@ dependencies:
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
32
  - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '5.5'
35
+ - - ">="
33
36
  - !ruby/object:Gem::Version
34
37
  version: 5.5.1
35
38
  type: :development
@@ -37,6 +40,9 @@ dependencies:
37
40
  version_requirements: !ruby/object:Gem::Requirement
38
41
  requirements:
39
42
  - - "~>"
43
+ - !ruby/object:Gem::Version
44
+ version: '5.5'
45
+ - - ">="
40
46
  - !ruby/object:Gem::Version
41
47
  version: 5.5.1
42
48
  - !ruby/object:Gem::Dependency
@@ -44,6 +50,9 @@ dependencies:
44
50
  requirement: !ruby/object:Gem::Requirement
45
51
  requirements:
46
52
  - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '4.2'
55
+ - - ">="
47
56
  - !ruby/object:Gem::Version
48
57
  version: 4.2.0
49
58
  type: :development
@@ -51,6 +60,9 @@ dependencies:
51
60
  version_requirements: !ruby/object:Gem::Requirement
52
61
  requirements:
53
62
  - - "~>"
63
+ - !ruby/object:Gem::Version
64
+ version: '4.2'
65
+ - - ">="
54
66
  - !ruby/object:Gem::Version
55
67
  version: 4.2.0
56
68
  description: Expose the bundled libstemmer_c library to Ruby.
@@ -67,6 +79,7 @@ files:
67
79
  - ext/lingua/extconf.rb
68
80
  - ext/lingua/stemmer.c
69
81
  - lib/lingua/stemmer.rb
82
+ - lib/lingua/version.rb
70
83
  - libstemmer_c/MANIFEST
71
84
  - libstemmer_c/Makefile
72
85
  - libstemmer_c/Makefile.windows
@@ -173,8 +186,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
173
186
  version: '0'
174
187
  requirements: []
175
188
  rubyforge_project:
176
- rubygems_version: 2.4.6
189
+ rubygems_version: 2.4.5
177
190
  signing_key:
178
191
  specification_version: 4
179
192
  summary: Expose libstemmer_c to Ruby.
180
193
  test_files: []
194
+ has_rdoc: true