Sha256: 94a7a8982af0202b50424b65628af47953add7c11107f2fcc3663a5592236bcb

Contents?: true

Size: 848 Bytes

Versions: 62

Compression:

Stored size: 848 Bytes

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/gempackagetask'

desc 'Default: run unit tests.'
task :default => :test

desc 'Test the restful_authentication plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

desc 'Generate documentation for the restful_authentication plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'RestfulAuthentication'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

gemspec = eval(File.read("#{File.dirname(__FILE__)}/restful-authentication.gemspec"))
PKG_NAME = gemspec.name
PKG_VERSION = gemspec.version

Rake::GemPackageTask.new(gemspec) do |pkg|
  pkg.need_zip = true
  pkg.need_tar = true
end

Version data entries

62 entries across 62 versions & 10 rubygems

Version Path
caleb-restful-authentication-1.1.1 Rakefile
dwaite-restful-authentication-1.1.1 Rakefile
genki-restful-authentication-1.1.1 Rakefile
ggoodale-restful-authentication-1.1.1 Rakefile
smukherjee-openbill-0.1.5 vendor/plugins/restful-authentication/Rakefile
smukherjee-openbill-0.1.6 vendor/plugins/restful-authentication/Rakefile
smukherjee-openbill-0.1.7 vendor/plugins/restful-authentication/Rakefile
rails3-restful-authentication-3.0.1 Rakefile
tournament-5.0.0 webgui/vendor/plugins/restful_authentication/Rakefile
jashmenn-restful-authentication-2.0.0.beta1 Rakefile
branston-0.6.6 lib/branston/vendor/plugins/restful_authentication/Rakefile
branston-0.6.5 lib/branston/vendor/plugins/restful_authentication/Rakefile
branston-0.6.4 lib/branston/vendor/plugins/restful_authentication/Rakefile
branston-0.6.3 lib/branston/vendor/plugins/restful_authentication/Rakefile
branston-0.6.2 lib/branston/vendor/plugins/restful_authentication/Rakefile
tournament-4.2.0 webgui/vendor/plugins/restful_authentication/Rakefile
tournament-4.0.2 webgui/vendor/plugins/restful_authentication/Rakefile
tournament-4.0.0 webgui/vendor/plugins/restful_authentication/Rakefile
branston-0.6.1 lib/branston/vendor/plugins/restful_authentication/Rakefile
branston-0.6.0 lib/branston/vendor/plugins/restful_authentication/Rakefile