Rakefile

Path: plugins/can_has_sphinx/Rakefile
Last Update: Thu Jun 24 13:41:14 +0000 2010

require ‘rake’ require ‘rake/testtask’ require ‘rake/rdoctask‘

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

desc ‘Test the acts_as_sphinx plugin.’ Rake::TestTask.new(:test) do |t|

  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true

end

desc ‘Generate documentation for the acts_as_sphinx plugin.’ Rake::RDocTask.new(:rdoc) do |rdoc|

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'ActsAsSphinx'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')

end

[Validate]