public
Description: A CSS framework that aims to cut down on your CSS development time
Homepage: http://www.blueprintcss.org
Clone URL: git://github.com/joshuaclayton/blueprint-css.git
joshuaclayton (author)
Thu Aug 20 14:35:40 -0700 2009
commit  6c24a608fdb44b69683ee5bfaf1c2cb597ae7c27
tree    56e50a0332021440d445ee7de99ebaf1ea11fdff
parent  7b0d045198a837b9f19dad6dce67439a069c04c4 parent  9be685760014b3258dcd83913b9b19f130551b2f
blueprint-css / Rakefile
100644 13 lines (10 sloc) 0.214 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
require "rake"
require "rake/testtask"
require "rake/rdoctask"
 
desc "Test Blueprint"
Rake::TestTask.new(:test) do |t|
  t.libs << "lib"
  t.libs << "test"
  t.pattern = "test/**/*_test.rb"
  t.verbose = true
end