Sha256: 8eea0ce2356237e17e513ca4d23bcee0a70dd223aa38a7dbb0cccd4d2bb1e737

Contents?: true

Size: 713 Bytes

Versions: 2

Compression:

Stored size: 713 Bytes

Contents

require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "term-extraction"
    s.summary = %Q{
      Provides access to term extraction APIs such as Yahoo! Term Extraction API and
      Zemanta.
    }
    s.email = "alexrabarts@gmail.com"
    s.homepage = "http://github.com/alexrabarts/term_extraction"
    s.description = "Term extraction library"
    s.authors = ["alex"]
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib' << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

task :default => :test

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
term-extraction-1.0.0 Rakefile
term-extraction-0.1.4 Rakefile