aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/plugins/recaptcha/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/plugins/recaptcha/Rakefile')
-rw-r--r--vendor/plugins/recaptcha/Rakefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/vendor/plugins/recaptcha/Rakefile b/vendor/plugins/recaptcha/Rakefile
deleted file mode 100644
index 50d21099d..000000000
--- a/vendor/plugins/recaptcha/Rakefile
+++ /dev/null
@@ -1,23 +0,0 @@
-require 'rake'
-require 'rake/testtask'
-require 'rake/rdoctask'
-
-desc 'Default: run unit tests.'
-task :default => :test
-
-desc 'Test the recaptcha plugin.'
-Rake::TestTask.new(:test) do |t|
- t.libs << 'lib'
- t.pattern = 'test/**/*_test.rb'
- t.verbose = true
-end
-
-desc 'Generate documentation for the recaptcha plugin.'
-Rake::RDocTask.new(:rdoc) do |rdoc|
- rdoc.rdoc_dir = 'rdoc'
- rdoc.title = 'reCAPTCHA'
- rdoc.template = 'jamis'
- rdoc.options << '--line-numbers' << '--inline-source'
- rdoc.rdoc_files.include('README')
- rdoc.rdoc_files.include('lib/**/*.rb')
-end