-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
58 lines (51 loc) · 1.64 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
warn e.message
warn 'Run `bundle install` to install missing gems'
exit e.status_code
end
require 'rake'
require 'rake/testtask'
require 'rubocop/rake_task'
begin
require 'juwelier'
Juwelier::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 = 'http://unipept.ugent.be'
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, pept2prot and taxonomy) and some utility
commands for handling proteins using the command line.
EOS
gem.email = '[email protected]'
gem.authors = ['Bart Mesuere', 'Pieter Verschaffelt', 'Tibo Vande Moortele', 'Toon Willems', 'Tom Naessens']
gem.required_ruby_version = '>= 2.7.0'
end
Juwelier::RubygemsDotOrgTasks.new
rescue LoadError
# do nothing
end
task :test_unit do
require './test/helper.rb'
FileList['./test/**/test_*.rb', './test/**/*_spec.rb'].each do |fn|
require fn
end
end
RuboCop::RakeTask.new(:test_style)
task test: %i[test_unit]
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