Rakefile in ankusa-0.0.7 vs Rakefile in ankusa-0.0.8

- old
+ new

@@ -31,14 +31,21 @@ t.libs << "lib" t.test_files = FileList['test/hasher_test.rb', 'test/cassandra_classifier_test.rb'] t.verbose = true } +desc "Run all unit tests with FileSystem storage" +Rake::TestTask.new("test_filesystem") { |t| + t.libs << "lib" + t.test_files = FileList['test/hasher_test.rb', 'test/file_system_classifier_test.rb'] + t.verbose = true +} + spec = Gem::Specification.new do |s| s.name = "ankusa" - s.version = "0.0.7" + s.version = "0.0.8" s.authors = ["Brian Muller"] - s.date = %q{2010-12-12} + s.date = %q{2011-01-05} s.description = "Text classifier with HBase or Cassandra storage" s.summary = "Text classifier in Ruby that uses Hadoop's HBase or Cassandra for storage" s.email = "brian.muller@livingsocial.com" s.files = FileList["lib/**/*", "[A-Z]*", "Rakefile", "docs/**/*"] s.homepage = "https://github.com/livingsocial/ankusa"