public
Description: The code for the new version of The Connected Republic, the public web-space where people interested in the use of connectivity to tackle public problems can find each other and share ideas. Development sponsored by Cisco IBSG Public Sector Current version: http://www.theconnectedrepublic.org/ Project at: http://nokahuna.com/projects/142
Homepage: http://nokahuna.com/projects/142
Clone URL: git://github.com/red56/the-connected-website.git
100644 21 lines (15 sloc) 0.388 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
def do_not_show_test_names_when_running_tests
  Rake::TestTask.class_eval do
    alias_method :crufty_define, :define
    def define
      @verbose = false
      crufty_define
    end
  end
end
 
 
require(File.join(File.dirname(__FILE__), 'config', 'boot'))
 
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
do_not_show_test_names_when_running_tests
 
require 'tasks/rails'