ruby-stemmer 0.9.4-x86-mswin32-60 → 0.9.5-x86-mswin32-60

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
- MDNjNDg2M2UwM2FlMTdlNTlhZGE1YzNkODQ5YTY4ZDYzYWM0YmI4MA==
4
+ NmRhMzBmYTVhMDQwNjk3NzBhMWY0ODRlYTg2ZDhlNWMyMmU3YzE3NQ==
5
5
  data.tar.gz: !binary |-
6
- OTNkMzhkNzExMGQ5YmM2MDI5NDhmYWI1ZGYxYTEwM2EwNWRiNGY5OQ==
6
+ NWMxMmJkNzE4YzNlZTAyNTI2YmM5MDQ0Yjk3NWU5YmIxNTQ3ODhkZA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MjdhZmMzYmUwNmIyZjk0OGI5YTBlMmFiYTAxOWI0YzI4N2U2ZmRhNWQwYmM3
10
- MmE4MTAxMTcyMDc5MzYxOTVhYTIzYTYzZjJhNmU2NjM1ODM0ODBkNmE0MGFl
11
- Nzk0MDY2MDc2MjI0NGM2MWY4YmJmNjU1NzBiOTI0MmMzN2NlNTU=
9
+ NjA0MTExNjNjZTcwM2VmZjI4ZDlkNGZmYjhhZjllMzVjMzM1NzVjMzFjY2E3
10
+ OGYwOWJjNjMyNjA3ZmI5OGFiOTVjZmNlOGFiNDFiNjIyYTQ2MDk0ZGE4MjZh
11
+ NDUxOTRlY2EyMTU3M2NhYWViYmRlNGU4ODljM2IyODQ0ZTAyNWY=
12
12
  data.tar.gz: !binary |-
13
- Njk0ZTk1MGY2ZjFhMTExNGIzODQzYTgzYmQ3YmQ5YTBjMGEwMzhiOWE2ZTlh
14
- ODk4MjU0NjU2YjcxMjAzYzAwMDI5MzI0MTliODAyNGIxOThjMmQ3NGQ1MWY0
15
- ODIxOGE5NjdkZWMwYzk5MmMwMWNhMGFlN2MxNjFlOTY0N2U3ODk=
13
+ Nzc4ZThjM2RkZGUwYTc4Y2U1NDgwYzdhMmQ2ZDM1Yzk2NjVmMzFmZDNhN2Uz
14
+ MzlmOGNiZjk4MzE0NWE1ZTBjNDQ5ZmE0MjVkYTc5MTAzZTk4M2ZiN2NmNWRh
15
+ ZGZkMDNkMGNjZmYwNmZlZDcxM2JlZTE1NmMyZDUxZjYwZWI5NTY=
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
 
Binary file
Binary file
@@ -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-mswin32-60
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