public
Description: Simple raffle management application
Homepage:
Clone URL: git://github.com/melriffe/pickme.git
pickme / Rakefile
100644 23 lines (17 sloc) 0.546 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
 
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
 
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'