Rakefile in classifier-1.3.0 vs Rakefile in classifier-1.3.1
- old
+ new
@@ -3,14 +3,14 @@
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/gempackagetask'
require 'rake/contrib/rubyforgepublisher'
-PKG_VERSION = "1.3.0"
+PKG_VERSION = "1.3.1"
PKG_FILES = FileList[
- "lib/**/*", "bin/*", "test/**/*", "[A-Z]*", "Rakefile", "doc/**/*"
+ "lib/**/*", "bin/*", "test/**/*", "[A-Z]*", "Rakefile", "html/**/*"
]
desc "Default Task"
task :default => [ :test ]
@@ -30,11 +30,11 @@
# Genereate the RDoc documentation
desc "Create documentation"
Rake::RDocTask.new("doc") { |rdoc|
rdoc.title = "Ruby Classifier - Bayesian and LSI classification library"
- rdoc.rdoc_dir = 'doc'
+ rdoc.rdoc_dir = 'html'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
}
# Genereate the package
@@ -68,10 +68,9 @@
s.add_dependency('stemmer', '>= 1.0.0')
s.requirements << "A porter-stemmer module to split word stems."
#### Author and project details.
-
s.author = "Lucas Carlson"
s.email = "lucas@rufy.com"
s.homepage = "http://classifier.rufy.com/"
end