public
Description:
Homepage: http://mutuallyhuman.com
Clone URL: git://github.com/mvanholstyn/mhs_authentication_system.git
Click here to lend your support to: mhs_authentication_system and make a donation at www.pledgie.com !
100644 22 lines (18 sloc) 0.685 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rake'
require 'rake/rdoctask'
require 'spec/rake/spectask'
 
desc 'Default: run specs.'
task :default => :spec
 
desc 'Run specs for the mhs_authentication_system plugin.'
Spec::Rake::SpecTask.new(:spec) do |t|
  # t.spec_opts = ['--options', %Q{#{File.join(File.dirname(__FILE__), '../../../spec/spec.opts')}}]
  t.spec_files = FileList['spec/**/*_spec.rb']
end
 
desc 'Generate documentation for the mhs_authentication_system plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'MhsAuthenticationSystem'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end