Sha256: c9f3b217922c4dc2c3b0b860921a1884fdf889300f6cdb5cdca598d906a5bb1c
Contents?: true
Size: 1.46 KB
Versions: 2
Compression:
Stored size: 1.46 KB
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", "Daniel Huckstep"] s.add_dependency 'crack', ['>= 0.1.6'] end rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'term_extraction' rdoc.options << '--line-numbers' << '--inline-source' rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end require 'rake/testtask' Rake::TestTask.new(:test) do |t| t.libs << 'lib' << 'test' t.pattern = 'test/**/*_test.rb' t.verbose = false end begin require 'rcov/rcovtask' Rcov::RcovTask.new do |t| t.libs << 'test' t.test_files = FileList['test/**/*_test.rb'] t.verbose = true end rescue LoadError puts "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov" end begin require 'cucumber/rake/task' Cucumber::Rake::Task.new(:features) rescue LoadError puts "Cucumber is not available. In order to run features, you must: sudo gem install cucumber" end task :default => :test
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
term_extraction-0.1.7 | Rakefile |
term_extraction-0.1.5 | Rakefile |