Sha256: 59ecd5a0682faa60d66334347d3ac403a0ef519e1185dd7f301c54f6c4991b41

Contents?: true

Size: 702 Bytes

Versions: 26

Compression:

Stored size: 702 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Authpds'
  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

26 entries across 26 versions & 1 rubygems

Version Path
authpds-0.1.2 Rakefile
authpds-0.1.1 Rakefile
authpds-0.1.0 Rakefile
authpds-0.0.23 Rakefile
authpds-0.0.22 Rakefile
authpds-0.0.21 Rakefile
authpds-0.0.20 Rakefile
authpds-0.0.19 Rakefile
authpds-0.0.18 Rakefile
authpds-0.0.17 Rakefile
authpds-0.0.16 Rakefile
authpds-0.0.15 Rakefile
authpds-0.0.14 Rakefile
authpds-0.0.13 Rakefile
authpds-0.0.12 Rakefile
authpds-0.0.11 Rakefile
authpds-0.0.10 Rakefile
authpds-0.0.9 Rakefile
authpds-0.0.8 Rakefile
authpds-0.0.7 Rakefile