Sha256: 64cfcf99cf8cc65f1f6141f5a62fd1bffa26418aade8366a9b5aab367c467809

Contents?: true

Size: 561 Bytes

Versions: 16

Compression:

Stored size: 561 Bytes

Contents

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

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

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

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

Version data entries

16 entries across 16 versions & 7 rubygems

Version Path
galetahub-simple_captcha-0.1.5 Rakefile
galetahub-simple_captcha-0.1.4 Rakefile
loyal_simple_captcha-0.0.1 Rakefile
glebtv-simple_captcha-0.2.1 Rakefile
glebtv-simple_captcha-0.2.0 Rakefile
foco-simple_captcha-0.1.3 Rakefile
nahaylo-simple_captcha-0.2.0 Rakefile
the_captcha-0.1.3 Rakefile
the_captcha-0.1.1 Rakefile
the_captcha-0.1.0 Rakefile
wolcanus-simple_captcha-0.1.6 Rakefile
wolcanus-simple_captcha-0.1.5 Rakefile
wolcanus-simple_captcha-0.1.4 Rakefile
wolcanus-simple_captcha-0.1.3 Rakefile
galetahub-simple_captcha-0.1.3 Rakefile
galetahub-simple_captcha-0.1.2 Rakefile