public
Description: A Rails plugin for merging Active Record models
Homepage:
Clone URL: git://github.com/collectiveidea/merger.git
Click here to lend your support to: merger and make a donation at www.pledgie.com !
jfcouture (author)
Fri Apr 17 13:30:59 -0700 2009
brandon (committer)
Fri Apr 24 06:13:43 -0700 2009
merger / Rakefile
100644 34 lines (30 sloc) 0.878 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'rake'
require "load_multi_rails_rake_tasks"
require 'rake/testtask'
require 'rake/rdoctask'
require 'rcov/rcovtask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
namespace :test do
  desc "just rcov minus html output"
  Rcov::RcovTask.new(:coverage) do |t|
    t.test_files = FileList['test/**/*_test.rb']
    t.output_dir = 'coverage'
    t.verbose = true
    t.rcov_opts = %w(--exclude test,/usr/lib/ruby,/Library/Ruby --sort coverage)
  end
end
 
desc 'Generate documentation for the plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'Merger'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end