Sha256: bb56c90fd24522807c3080ee13dff70d74cbcab99e80d3c1530f140136f705ef

Contents?: true

Size: 1.36 KB

Versions: 23

Compression:

Stored size: 1.36 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://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "snp-search"
  gem.homepage = "http://github.com/hpa-bioinformatics/snp-search"
  gem.license = "MIT"
  gem.summary = %Q{Toolset for generating SNP database}
  gem.description = %Q{Use the snp-search toolset to query the SNP database}
  gem.email = "ali.al-shahib@hpa.org.uk"
  gem.authors = ["Ali Al-Shahib", "Anthony Underwood"]
  gem.executables = ["snp-search"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

require 'rdoc/task'
RDoc::Task.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "snp-search #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
snp-search-0.30.0 Rakefile
snp-search-0.29.0 Rakefile
snp-search-0.27.2 Rakefile
snp-search-0.27.1 Rakefile
snp-search-0.27.0 Rakefile
snp-search-0.26.0 Rakefile
snp-search-0.23.0 Rakefile
snp-search-0.22.0 Rakefile
snp-search-0.21.0 Rakefile
snp-search-0.19.0 Rakefile
snp-search-0.17.0 Rakefile
snp-search-0.16.0 Rakefile
snp-search-0.15.0 Rakefile
snp-search-0.14.0 Rakefile
snp-search-0.12.0 Rakefile
snp-search-0.10.0 Rakefile
snp-search-0.9.0 Rakefile
snp-search-0.8.0 Rakefile
snp-search-0.7.0 Rakefile
snp-search-0.6.0 Rakefile