ruby-stemmer 0.9.2 → 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.rdoc +7 -2
  2. data/Rakefile +1 -1
  3. data/VERSION +1 -1
  4. metadata +4 -4
@@ -48,7 +48,13 @@ For more details about libstemmer_c please visit the {SnowBall website}[http://s
48
48
 
49
49
  gem install ruby-stemmer
50
50
 
51
- Please not that Windows is not supported at this time.
51
+ ==== Windows
52
+
53
+ There's also a Windows (Fat bin) compiled against ruby 1.9.3 and ruby 1.8.7.
54
+
55
+ gem install ruby-stemmer --platform=x86-mswin32
56
+
57
+ {It's known}[http://cl.ly/BX9o] to work under Windows XP.
52
58
 
53
59
  === Development version
54
60
 
@@ -69,7 +75,6 @@ For further reference on stem vs. root, please check wikipedia articles on the t
69
75
  == TODO
70
76
 
71
77
  * {Open issues}[http://github.com/aurelian/ruby-stemmer/issues]
72
- * Release Windows Gem
73
78
 
74
79
  == Note on Patches/Pull Requests
75
80
 
data/Rakefile CHANGED
@@ -53,7 +53,7 @@ Rake::ExtensionTask.new('ruby-stemmer', $jeweler.jeweler.gemspec) do |ext|
53
53
  ext.lib_dir = File.join(*['lib', 'lingua', ENV['FAT_DIR']].compact)
54
54
  ext.ext_dir = File.join 'ext', 'lingua'
55
55
  ext.cross_compile = true
56
- ext.cross_platform = ['i686-mswin32']
56
+ ext.cross_platform = ['i386-mswin32-60', 'i386-mingw32']
57
57
  ext.name = 'stemmer_native'
58
58
  end
59
59
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.2
1
+ 0.9.3
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-stemmer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 63
4
+ hash: 61
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 2
10
- version: 0.9.2
9
+ - 3
10
+ version: 0.9.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Aurelian Oancea
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-11-03 00:00:00 Z
19
+ date: 2011-11-06 00:00:00 Z
20
20
  dependencies: []
21
21
 
22
22
  description: Expose the bundled libstemmer_c library to Ruby.