Sha256: d439e576bfb9181e118d5ba914732f62cf5b97324880354a8d60b29b738b0906

Contents?: true

Size: 573 Bytes

Versions: 112

Compression:

Stored size: 573 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    = 'ThinMan'
  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

112 entries across 112 versions & 1 rubygems

Version Path
thin_man-0.20.10 Rakefile
thin_man-0.20.9 Rakefile
thin_man-0.20.8 Rakefile
thin_man-0.20.7 Rakefile
thin_man-0.20.6 Rakefile
thin_man-0.20.5 Rakefile
thin_man-0.20.4 Rakefile
thin_man-0.20.3 Rakefile
thin_man-0.20.2 Rakefile
thin_man-0.20.1 Rakefile
thin_man-0.20.0 Rakefile
thin_man-0.19.17 Rakefile
thin_man-0.19.16 Rakefile
thin_man-0.19.15 Rakefile
thin_man-0.19.14 Rakefile
thin_man-0.19.13 Rakefile
thin_man-0.19.12 Rakefile
thin_man-0.19.11 Rakefile
thin_man-0.19.10 Rakefile
thin_man-0.19.9 Rakefile