public
Description: Castanaut lets you write executable scripts for your screencasts. With a simple dictionary of stage directions, you can create complex interactions with a variety of applications.
Homepage: http://gadgets.inventivelabs.com.au/castanaut
Clone URL: git://github.com/joseph/castanaut.git
Joseph Pearson (author)
Mon Feb 25 16:33:45 -0800 2008
castanaut / Rakefile
100644 26 lines (17 sloc) 0.588 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.
 
load 'tasks/setup.rb'
 
ensure_in_path 'lib'
require 'castanaut'
 
task :default => 'spec:run'
 
PROJ.name = 'castanaut'
PROJ.authors = 'Joseph Pearson'
PROJ.email = 'joseph@inventivelabs.com.au'
PROJ.url = 'http://castanaut.rubyforge.org'
PROJ.version = Castanaut::VERSION
 
PROJ.rubyforge_name = 'castanaut'
PROJ.rdoc_remote_dir = 'doc'
 
PROJ.exclude += ['^spec\/*', '^test\/*']
 
PROJ.spec_opts << '--color'
 
# EOF