Sha256: 3322aa7a8a00aa93ccb8945c6f93a70982c782cd26879e6ef4939c96e8a84c89

Contents?: true

Size: 578 Bytes

Versions: 11

Compression:

Stored size: 578 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    = 'PartiallyUseful'
  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

11 entries across 11 versions & 1 rubygems

Version Path
partially_useful-6.0.0 Rakefile
partially_useful-5.1.0 Rakefile
partially_useful-5.0.0 Rakefile
partially_useful-0.2.2 Rakefile
partially_useful-0.2.1 Rakefile
partially_useful-0.2.0 Rakefile
partially_useful-0.1.1 Rakefile
partially_useful-0.1.0 Rakefile
partially_useful-0.0.3 Rakefile
partially_useful-0.0.2 Rakefile
partially_useful-0.0.1 Rakefile