remi / domain-finder

Find some previously used domain names and check availability

This URL has Read+Write access

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