cv / cruise-information-radiators

Some information radiators for CruiseControl(.java/.net/.rb) built with Processing and Quartz Composer

This URL has Read+Write access

cruise-information-radiators / Quartz Composer / Rakefile
100644 14 lines (12 sloc) 0.314 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
TEMPLATES_DIR = '/Developer/Library/Quartz Composer/Templates/'
SCREEN_SAVERS_DIR = '/Library/Screen Savers/'
 
task :default do
  cp 'Build Monitor Template.qtz', TEMPLATES_DIR
  
  [
    'Simple.qtz',
    'Simple 2.qtz',
    'NES Cube.qtz'
  ].each {|screen_saver|
    cp screen_saver, SCREEN_SAVERS_DIR
  }
end