summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index d14cf54..87715c1 100644
--- a/Rakefile
+++ b/Rakefile
@@ -44,11 +44,26 @@ task :stats => :copy_files do
).to_s
end
+desc 'Test CodeRay Demos'
+task :test_demos do
+ system 'ruby -w ./demo/suite.rb'
+end
+
desc 'Test CodeRay'
task :test do
system 'ruby -w ./test/suite.rb'
end
+desc 'Test CodeRay Demos with Fox'
+task :testf_demos do
+ system 'ruby -w ./demo/suite.rb -f'
+end
+
+desc 'Test CodeRay with Fox'
+task :testf do
+ system 'ruby -w ./test/suite.rb -f'
+end
+
desc 'Test CodeRay with debugging'
task :debug do
system 'ruby -w -d ./test/suite.rb'