ruby-stemmer 0.8.3 → 0.8.5
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +1 -1
- data/README.rdoc +6 -3
- data/Rakefile +2 -5
- data/VERSION +1 -1
- metadata +2 -2
data/MIT-LICENSE
CHANGED
data/README.rdoc
CHANGED
@@ -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
|
-
#
|
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://
|
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-
|
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:
|
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:
|
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.
|
1
|
+
0.8.5
|