GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Fork of bmizerany/sinatra
Description: Classy web-development dressed in a DSL
Homepage: http://sinatrarb.com
Clone URL: git://github.com/JackDanger/sinatra.git
Blake Mizerany (author)
Sun Feb 24 16:43:39 -0800 2008
commit  1f07ba27b245f25c78c6ec140476d2922258ef3d
tree    524a5efa834279806f21d34233f89b70c0096cca
parent  fbdf982f429a4cfd9bc6e3804b2060ed4fb0082a
sinatra / Rakefile
100644 10 lines (7 sloc) 0.185 kb
1
2
3
4
5
6
7
8
9
10
require 'rubygems'
require 'rake/testtask'
 
task :default => :test
 
Rake::TestTask.new do |t|
  ENV['SINATRA_ENV'] = 'test'
  t.pattern = File.dirname(__FILE__) + "/test/*_test.rb"
end