public
Description: Library for accessing ThruDB documents.
Clone URL: git://github.com/technoweenie/activedocument.git
technoweenie (author)
Wed Jan 16 17:41:54 -0800 2008
commit  5832f33388f2f845878ae4e963d8afd79a9b3b7c
tree    04b73678b62212b3e88aaa7c9bab7b670664ca07
parent  27c28752135f9dbde66979ec46be0d11c16ef706
activedocument / 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