Sha256: a9b4101029604c4b043726f678be5b66e2a948c9a9583636640dab355bd50624

Contents?: true

Size: 712 Bytes

Versions: 43

Compression:

Stored size: 712 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    = 'TkhAuthentication'
  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

43 entries across 43 versions & 1 rubygems

Version Path
tkh_authentication-0.1.8 Rakefile
tkh_authentication-0.9.2 Rakefile
tkh_authentication-0.9.1 Rakefile
tkh_authentication-0.9 Rakefile
tkh_authentication-0.1.7 Rakefile
tkh_authentication-0.1.6 Rakefile
tkh_authentication-0.1.5 Rakefile
tkh_authentication-0.1.3 Rakefile
tkh_authentication-0.1.2 Rakefile
tkh_authentication-0.1.1 Rakefile
tkh_authentication-0.1 Rakefile
tkh_authentication-0.0.12 Rakefile
tkh_authentication-0.0.11 Rakefile
tkh_authentication-0.0.10 Rakefile
tkh_authentication-0.0.9 Rakefile
tkh_authentication-0.0.8 Rakefile
tkh_authentication-0.0.7 Rakefile
tkh_authentication-0.0.6 Rakefile
tkh_authentication-0.0.5 Rakefile
tkh_authentication-0.0.4 Rakefile