public
Description: DEPRECATED. Use http://github.com/iwarshak/ssl_requirement instead
Homepage:
Clone URL: git://github.com/iwarshak/secure_actions.git
iwarshak (author)
Sat May 31 18:43:46 -0700 2008
commit  f1bd3d8a0bf266f31cf24fc5c83aa648609c4cb9
tree    5119cec0b6474aa9503d4af89b955158844af49e
parent  4e51350746bedacd2ebbc2f82eac6c1372ae07e6
secure_actions / Rakefile
100644 23 lines (19 sloc) 0.561 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the secure_actions plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the secure_actions plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'SecureActions'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end