--
-$Id: ChangeLog 7 2005-03-28 16:27:18Z tilman $
+$Id: ChangeLog 8 2005-03-28 18:11:12Z tilman $
++
2005-03-28 Tilman Sauerbeck (tilman at code-monkey de)
* lib/redact/app.rb: Tweaked "redact --version" output
+ * Rakefile, test/test_basic.rb: Use 'edj' instead of 'eet'
+ as the extension for the test Edjes
2005-03-26 Tilman Sauerbeck (tilman at code-monkey de)
* lib/redact/app.rb: Use Tempfile's for the Embryo source- and
-# $Id: Rakefile 1 2005-03-26 01:32:38Z tilman $
+# $Id: Rakefile 8 2005-03-28 18:11:12Z tilman $
require "rake/clean"
require "rake/testtask"
-CLOBBER.include(FileList["test/*.eet"])
+CLOBBER.include(FileList["test/*.edj"])
sitelibdir = Config::CONFIG["sitelibdir"]
destdir = "#{ENV["DESTDIR"]}"
-# $Id: test_basic.rb 1 2005-03-26 01:32:38Z tilman $
+# $Id: test_basic.rb 8 2005-03-28 18:11:12Z tilman $
require "redact/app"
require "test/unit"
title = "red_rect"
base = File.join(File.dirname(__FILE__), title)
file = base + ".rb"
- args = [file, "-o", file + ".eet"]
+ args = [file, "-o", file + ".edj"]
assert_nothing_raised do
Redact::App.new(args).run
title = "crossfade"
base = File.join(File.dirname(__FILE__), title)
file = base + ".rb"
- args = [file, "-o", file + ".eet"]
+ args = [file, "-o", file + ".edj"]
assert_nothing_raised do
Redact::App.new(args).run