Sha256: 7ea1e6b9ab8189d8be429236cd23148a547c1577d32de685b3d8007bebc11944

Contents?: true

Size: 1.73 KB

Versions: 29

Compression:

Stored size: 1.73 KB

Contents

require 'rubygems'
require 'bundler'
#
#require 'bundler/version'

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'


if RUBY_VERSION.start_with?("2.1") or RUBY_VERSION.start_with?("2.2") or RUBY_VERSION.start_with?("2.0")
  require 'jeweler'
  @taskClass = Jeweler
else
  require 'juwelier'
  @taskClass = Juwelier
end



@taskClass::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
   gem.name = "bio-polyploid-tools"
  gem.homepage = "http://github.com/tgac/bioruby-polyploid-tools"
  gem.license = "MIT"
  gem.summary = %Q{Tool to work with polyploids, NGS and molecular biology}
  gem.description = %Q{Repository of tools developed at Crop Genetics in JIC to work with polyploid wheat}
   gem.email = "ricardo.ramirez-gonzalez@jic.ac.uk"
  gem.authors = ["Ricardo H.  Ramirez-Gonzalez"]
  # Include your dependencies below. Runtime dependencies are required when using your gem,
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
  #gem.add_runtime_dependency 'bio-samtools', '= 0.6.2'
  #  gem.add_development_dependency 'rspec', '> 1.2.3'
#  gem.extensions = "ext/mkrf_conf.rb"
end
@taskClass::RubygemsDotOrgTasks.new

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


if RUBY_VERSION.start_with?("1.8")
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/test_*.rb'
    test.verbose = true
  end
end

task :default => :test

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
bio-polyploid-tools-1.2.1 Rakefile
bio-polyploid-tools-1.2.0 Rakefile
bio-polyploid-tools-1.1.2 Rakefile
bio-polyploid-tools-1.1.1 Rakefile
bio-polyploid-tools-1.1.0 Rakefile
bio-polyploid-tools-1.0.0 Rakefile
bio-polyploid-tools-0.10.1 Rakefile
bio-polyploid-tools-0.10.0 Rakefile
bio-polyploid-tools-0.9.10 Rakefile
bio-polyploid-tools-0.9.9 Rakefile
bio-polyploid-tools-0.9.8 Rakefile
bio-polyploid-tools-0.9.7 Rakefile
bio-polyploid-tools-0.9.6 Rakefile
bio-polyploid-tools-0.9.5 Rakefile
bio-polyploid-tools-0.9.4 Rakefile
bio-polyploid-tools-0.9.3 Rakefile
bio-polyploid-tools-0.9.2 Rakefile
bio-polyploid-tools-0.9.1 Rakefile
bio-polyploid-tools-0.9.0 Rakefile
bio-polyploid-tools-0.8.9 Rakefile