public
Description: Find some previously used domain names and check availability
Homepage:
Clone URL: git://github.com/remi/domain-finder.git
remi (author)
Fri Feb 06 13:03:28 -0800 2009
commit  164acdd8a744c98fd6f54cc2ccc684a7e2242f4e
tree    9dfe2d4c97d238525d92dd70eecd7f8ee65c1f28
parent  deb12117130b602f8f655a82e31b672d54be9bec
domain-finder / Rakefile
100644 10 lines (8 sloc) 0.265 kb
1
2
3
4
5
6
7
8
9
10
desc "Generate and view specdoc"
task :specdoc do
  system "spec -f specdoc spec/*_spec.rb" # kills BASH colors :(
end
 
desc "Generate and view HTML specdoc"
task :spechtml do
  system "spec -f html spec/*_spec.rb > tmp/specdoc.html; firefox tmp/specdoc.html"
end