X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=Rakefile;h=e7e2787e0f54e4183a11389ae9a26036a20b8f83;hb=0ed4898cef895314c34f5a3907225fb21e47797e;hp=b13ea937175695e4fa33cbc12b45a34ee55996bc;hpb=cfc1c3309c8c78411683697836307ee18f20ea1d;p=porter2stemmer.git diff --git a/Rakefile b/Rakefile index b13ea93..e7e2787 100644 --- a/Rakefile +++ b/Rakefile @@ -15,8 +15,9 @@ Jeweler::Tasks.new do |gem| gem.name = "porter2stemmer" gem.homepage = "http://github.com/NeilNjae/porter2stemmer" gem.license = "MIT" - gem.summary = %Q{TODO: one-line summary of your gem} - gem.description = %Q{TODO: longer description of your gem} + gem.summary = %Q{A pure Ruby implementation of the Porter 2 stemmer} + gem.description = %Q{This is the Porter 2 stemming algorithm, as described at +http://snowball.tartarus.org/algorithms/english/stemmer.html It removes suffixes from English words, revealing something closer to the stem of the word. For instance "acknowledgments".stem => "acknowledg".} gem.email = "neil.github@njae.me.uk" gem.authors = ["Neil Smith"] # Include your dependencies below. Runtime dependencies are required when using your gem, @@ -33,16 +34,9 @@ Rake::TestTask.new(:test) do |test| test.verbose = true end -require 'rcov/rcovtask' -Rcov::RcovTask.new do |test| - test.libs << 'test' - test.pattern = 'test/**/test_*.rb' - test.verbose = true -end - task :default => :test -require 'rake/rdoctask' +require 'rdoc/task' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : ""