public
Description: A proof of concept social crowd beat visualization thing, inspired by Giles Bowkett's RubyFringe talk.
Homepage:
Clone URL: git://github.com/xaviershay/socialbeat.git
xaviershay (author)
Mon Nov 03 13:32:26 -0800 2008
commit  02afaad5f2f87262580667d4ba452b2341046c56
tree    af8c3ecebbd21c3eabf7172fa28821727109c4e2
parent  1107dcb91e5492000a773829895a86fcb98df7c2
socialbeat / rakefile
100644 9 lines (7 sloc) 0.16 kb
1
2
3
4
5
6
7
8
9
desc "Run all specs"
task :spec do
  Dir['spec/*.rb'].reject {|f| f == 'stories/spec_helper.rb'}.each do |spec|
    load spec
  end
end
 
task :default => :spec