Sha256: dcf7f94dc309258ff2206127e570b2bc0649edfa8e2d479d9dd81ba4de2a2d19

Contents?: true

Size: 682 Bytes

Versions: 12

Compression:

Stored size: 682 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    = 'AuthpdsNyu'
  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 << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

task :default => :test

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
authpds-nyu-0.2.13 Rakefile
authpds-nyu-0.2.12 Rakefile
authpds-nyu-0.2.11 Rakefile
authpds-nyu-0.2.10 Rakefile
authpds-nyu-0.2.9 Rakefile
authpds-nyu-0.2.8 Rakefile
authpds-nyu-0.2.7 Rakefile
authpds-nyu-0.2.6 Rakefile
authpds-nyu-0.2.5 Rakefile
authpds-nyu-0.2.4 Rakefile
authpds-nyu-0.2.3 Rakefile
authpds-nyu-0.2.2 Rakefile