ruby-stemmer 0.8.3 → 0.8.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 (5) hide show
  1. data/MIT-LICENSE +1 -1
  2. data/README.rdoc +6 -3
  3. data/Rakefile +2 -5
  4. data/VERSION +1 -1
  5. metadata +2 -2
@@ -1,4 +1,4 @@
1
- Copyright (c) 2008,2009 Aurelian Oancea
1
+ Copyright (c) 2008-2011 Aurelian Oancea
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -30,12 +30,15 @@ For more details about libstemmer_c please visit the {SnowBall website}[http://s
30
30
 
31
31
  === Rails
32
32
 
33
- # in config/environment.rb:
33
+ # Rails2: -- config/environment.rb:
34
34
  config.gem 'ruby-stemmer', :version => '>=0.6.2', :lib => 'lingua/stemmer'
35
+
36
+ # Rails3: -- Gemfile
37
+ gem 'ruby-stemmer', '>=0.8.3', :lib => 'lingua/stemmer'
35
38
 
36
39
  === More details
37
40
 
38
- * Complete API in {RDoc format}[http://ruby-stemmer.rubyforge.org/ruby-stemmer]
41
+ * Complete API in {RDoc format}[http://rdoc.info/github/aurelian/ruby-stemmer/master/frames]
39
42
  * More usage on the {test file}[http://github.com/aurelian/ruby-stemmer/blob/master/test/lingua/test_stemmer.rb]
40
43
 
41
44
  == Install
@@ -89,7 +92,7 @@ For further reference on stem vs. root, please check wikipedia articles on the t
89
92
 
90
93
  == Copyright
91
94
 
92
- Copyright (c) 2008-2010 {Aurelian Oancea}[http://locknet.ro]. See MIT-LICENSE for details.
95
+ Copyright (c) 2008-2011 {Aurelian Oancea}[http://locknet.ro]. See MIT-LICENSE for details.
93
96
 
94
97
  == Contributors
95
98
 
data/Rakefile CHANGED
@@ -19,11 +19,8 @@ begin
19
19
  end
20
20
  end
21
21
  Jeweler::GemcutterTasks.new
22
- # Jeweler::RubyforgeTasks.new do |rubyforge|
23
- # rubyforge.doc_task = "rdoc"
24
- # end
25
22
  rescue LoadError
26
- puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
23
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
27
24
  end
28
25
 
29
26
  require 'rake/testtask'
@@ -42,7 +39,7 @@ begin
42
39
  end
43
40
  rescue LoadError
44
41
  task :rcov do
45
- abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
42
+ abort "RCov is not available. In order to run rcov, you must: gem install rcov"
46
43
  end
47
44
  end
48
45
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.3
1
+ 0.8.5
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 8
8
- - 3
9
- version: 0.8.3
8
+ - 5
9
+ version: 0.8.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Aurelian Oancea