public
Description: Syncs one directory to another (example: a git project to an svn repo)
Clone URL: git://github.com/technoweenie/duplikate.git
osteele (author)
Sun Apr 06 08:11:54 -0700 2008
commit  dc4c73182bd56c9e765e983e5fa8ce2810131450
tree    ac690f8709df384db4baf167abf646ff19fef7d9
parent  17034859650054beec134a5e04d8c51de259cfe8
duplikate / Rakefile
100644 13 lines (10 sloc) 0.298 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env ruby
 
require 'rubygems'
require 'rake'
require 'spec/rake/spectask'
 
task :default => 'spec'
  
desc "Run specifications"
Spec::Rake::SpecTask.new('spec') do |t|
  t.spec_opts = ["--format", "specdoc", "--colour"]
  t.spec_files = FileList[(ENV['FILES'] || 'spec/**/*_spec.rb')]
end