Sha256: ecb1836c7efd2d207982bc3d180c6bdd8523166cc806ec1e191076e0983b0ac7
Contents?: true
Size: 1.56 KB
Versions: 2
Compression:
Stored size: 1.56 KB
Contents
# encoding: utf-8 require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts 'Run `bundle install` to install missing gems' exit e.status_code end require 'rake' require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options gem.name = 'unipept' gem.executables = %w(unipept prot2pept peptfilter uniprot) gem.homepage = 'https://github.com/unipept/unipept-cli/' gem.license = 'MIT' gem.summary = 'Command line interface to Unipept web services.' gem.description = <<-EOS Command line interface to the Unipept (http://unipept.ugent.be) web services (pept2lca, taxa2lca, pept2taxa and taxonomy) and some utility commands for handling proteins using the command line. EOS gem.email = 'unipept@ugent.be' gem.authors = ['Toon Willems', 'Bart Mesuere', 'Tom Naessens'] gem.required_ruby_version = '>= 1.9.3' end Jeweler::RubygemsDotOrgTasks.new require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end desc 'Code coverage detail' task :simplecov do ENV['COVERAGE'] = 'true' Rake::Task['test'].execute end task default: :test require 'rdoc/task' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : '' rdoc.rdoc_dir = 'rdoc' rdoc.title = "unipept #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
unipept-0.7.1 | Rakefile |
unipept-0.7.0 | Rakefile |