namelessjon / notable

A very simple sinatra application which listens on Jabber to take your notes and then displays them back to you

This URL has Read+Write access

notable / Rakefile
100644 10 lines (7 sloc) 0.158 kb
1
2
3
4
5
6
7
8
9
10
require 'rake/testtask'
 
Rake::TestTask.new(:spec) do |t|
  t.libs << 'lib'
  t.pattern = 'spec/**/*_spec.rb'
  t.verbose = false
end
 
task :default => :spec