ruby-stemmer 0.9.4-x86-mingw32 → 0.9.5-x86-mingw32

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZDg5MzU3ZmFhN2IyMDIwMGE0NjFkOTA0ZjZkYmY2NWIyNjRkY2IxZg==
4
+ NTcxZDRmYWE5MTUxOWMxOGM0YWUyZWQ3MDEwOGE4YTIxYWU1OTFhYQ==
5
5
  data.tar.gz: !binary |-
6
- NTgxM2ExMTA3MjUxNzE4YmVkODYzYzNlNjk0Y2MxYTViMDBhYzgyNQ==
6
+ ZjBkY2NkZDIzOWQ0MzU2ODA3N2UyN2Y2NGNhYTYxOTBhNDlmOTZhNA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- Nzg5NWE1YWI2MDNhNGNiYzU5ODcyMjE1YWYwZWIwZDQwNWUzNDkxNTU2Mjg3
10
- YjhlMGFiYTY0OTQ1YzFiMDA2NWJlOWI3OTA4NmM5MDc2ZTFiYzk2OTk0MTcz
11
- ZjNhNzY2ZWY3MDY3NTgxZjNmOWY4ZTU1NmRjNWZiZDhjODg4YzM=
9
+ MDZhMmNjZjlmOTk2ZWQwMWVhYjA2OWEwZGI1MjM5OTAzY2M5ZTNlZjY2MWVl
10
+ NjEwYTA5MGUxMDg4OGZhNTM3OWIzYjY5ZjcwNmFiNmVkNDg5N2VmZjJkN2Vh
11
+ N2QzMzJlM2ViMTU0YmIxNGJmNTA3ZmMyNGE2NGQzMWQ2ODY5OGM=
12
12
  data.tar.gz: !binary |-
13
- ODczOGYyMWE3ZWY0YmViZTNjNmRlNDA5MDgyZDQzOTU0MmYyZTk3N2E0NWY1
14
- YTk5MjZiZjJmMzg0Njc3YTJiMmFmNjQxOWE2ZmQ1ODVmYjAyYWU2NmViOTA3
15
- YzdjZTZiNDRmMDUyNzdlY2Q3ZjlhNDQ1NWMzNmUyNTRkMzljYWY=
13
+ YmU4ZjQ0M2U2MmFlOGE4ZjZmNmVmM2FhM2ZjZGNkMzBjN2MwMDJhZGJmZTBh
14
+ YjAyNTBhNWQ5NmMzMzQ2ODQzNDM2Y2RkMDE4NWJhYmI1NTkwOWNiY2YzOGFj
15
+ ZWE0MzhlMjMwMjZkZWE0NTU0Y2ZiMmJkM2QxODc1NjMzODBiNjU=
@@ -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: x86-mingw32
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.
@@ -68,6 +80,7 @@ files:
68
80
  - lib/lingua/1.8/stemmer_native.so
69
81
  - lib/lingua/1.9/stemmer_native.so
70
82
  - lib/lingua/stemmer.rb
83
+ - lib/lingua/version.rb
71
84
  - libstemmer_c/MANIFEST
72
85
  - libstemmer_c/Makefile
73
86
  - libstemmer_c/Makefile.windows