DocSavage / rails-authorization-plugin

This plugin provides a flexible way to add authorization to Rails.

This URL has Read+Write access

Tim Galeckas (author)
Mon Nov 10 10:14:05 -0800 2008
Kieran Pilkington (committer)
Wed Dec 24 01:56:40 -0800 2008
commit  712f3607648f2342342425f97b9edc4209bb0ff1
tree    e609308057bafdae11b0a5a8ac202e5bc01d847b
parent  d028c5ac6efabcf531fa6cc60fae9ac6fd830a6c parent  0c4d18eb2227d2b83f6a91814aaee57868a52bd3
a3513ada » bkatz 2006-06-29 Commit of version 1.0rc2 af... 1 require 'rake'
2 require 'rake/testtask'
3 require 'rake/rdoctask'
4
5 desc 'Default: run unit tests.'
6 task :default => :test
7
8 desc 'Test the authorization plugin.'
9 Rake::TestTask.new(:test) do |t|
10 t.libs << 'lib'
11 t.pattern = 'test/**/*_test.rb'
12 t.verbose = true
13 end
14
15 desc 'Generate documentation for the authorization plugin.'
16 Rake::RDocTask.new(:rdoc) do |rdoc|
17 rdoc.rdoc_dir = 'rdoc'
18 rdoc.title = 'Authorization'
19 rdoc.options << '--line-numbers' << '--inline-source'
6dfe9d43 » grempe 2008-02-18 Re-named README to add .txt... 20 rdoc.rdoc_files.include('README.txt')
a3513ada » bkatz 2006-06-29 Commit of version 1.0rc2 af... 21 rdoc.rdoc_files.include('lib/**/*.rb')
22 end