Sha256: fc55495bb1667496f37d9774fe01b8d453faa01cebc614d6da45bb925cde799a

Contents?: true

Size: 555 Bytes

Versions: 80

Compression:

Stored size: 555 Bytes

Contents

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

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

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

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

Version data entries

80 entries across 80 versions & 15 rubygems

Version Path
DrMark-thinking-sphinx-1.1.14 vendor/after_commit/Rakefile
DrMark-thinking-sphinx-1.1.15 vendor/after_commit/Rakefile
DrMark-thinking-sphinx-1.1.6 vendor/after_commit/Rakefile
DrMark-thinking-sphinx-1.2.5 vendor/after_commit/Rakefile
DrMark-thinking-sphinx-1.2.6 vendor/after_commit/Rakefile
bterlson-thinking-sphinx-1.2.8 vendor/after_commit/Rakefile
dpickett-thinking-sphinx-1.1.12 vendor/after_commit/Rakefile
dpickett-thinking-sphinx-1.1.23 vendor/after_commit/Rakefile
dpickett-thinking-sphinx-1.1.4 vendor/after_commit/Rakefile
ebeigarts-thinking-sphinx-1.1.21 vendor/after_commit/Rakefile
ebeigarts-thinking-sphinx-1.1.22 vendor/after_commit/Rakefile
ebeigarts-thinking-sphinx-1.2.10 vendor/after_commit/Rakefile
factorylabs-thinking-sphinx-1.2.7 vendor/after_commit/Rakefile
freelancing-god-thinking-sphinx-0.9.11 vendor/after_commit/Rakefile
freelancing-god-thinking-sphinx-0.9.12 vendor/after_commit/Rakefile
freelancing-god-thinking-sphinx-0.9.13 vendor/after_commit/Rakefile
freelancing-god-thinking-sphinx-1.1.0 vendor/after_commit/Rakefile
freelancing-god-thinking-sphinx-1.1.1 vendor/after_commit/Rakefile
freelancing-god-thinking-sphinx-1.1.10 vendor/after_commit/Rakefile
freelancing-god-thinking-sphinx-1.1.11 vendor/after_commit/Rakefile