Sha256: 5e772e2541cb3edc0d82182af7b6eec2246a06f80d480dce12ad13bc6e8cf5d1

Contents?: true

Size: 582 Bytes

Versions: 4

Compression:

Stored size: 582 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'CollectionSorter'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end




Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
collection_sorter-0.0.4 Rakefile
collection_sorter-0.0.3 Rakefile
collection_sorter-0.0.2 Rakefile
collection_sorter-0.0.1 Rakefile