summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bleything <ben@bleything.net>2006-09-20 04:55:26 +0000
committerBen Bleything <ben@bleything.net>2006-09-20 04:55:26 +0000
commit150486871302810aa47141c44af8291a421dca78 (patch)
treed3a21625061f1f09606e4bfc87c97c2cfd80177c
parent8dd9c0ee674a85137fe7975e1caf0f072bfe8ca7 (diff)
downloadplist-150486871302810aa47141c44af8291a421dca78.tar.gz
refix the gem install -t problem
-rw-r--r--CHANGELOG5
-rw-r--r--Rakefile3
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index c20e7f0..ec8c273 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,8 @@
= plist - All-purpose Property List manipulation library
+2006-09-19 (r73):
+ * Really fix the rakefile this time (apparently I deleted some code that I needed...)
+
2006-09-18 (r70 - r72):
* Update this file ;)
* Fix Rakefile
@@ -65,4 +68,4 @@
* Add/update copyright notices in the source files
* Move a bunch of documentation out to README
* Split library into chunks
-* Properly delete files when cleaning up from tests \ No newline at end of file
+* Properly delete files when cleaning up from tests
diff --git a/Rakefile b/Rakefile
index 7e4aeb2..abb30bc 100644
--- a/Rakefile
+++ b/Rakefile
@@ -30,8 +30,9 @@ RUBYFORGE_PROJECT = "plist"
RUBYFORGE_USER = ENV['RUBYFORGE_USER']
TEST_FILES = Dir.glob('test/test_*').delete_if { |item| item.include?( "\.svn" ) }
+TEST_ASSETS = Dir.glob('test/assets/*').delete_if { |item| item.include?( "\.svn" ) }
LIB_FILES = Dir.glob('lib/**/*').delete_if { |item| item.include?( "\.svn" ) }
-RELEASE_FILES = [ "Rakefile", "README", "MIT-LICENSE", "docs/USAGE" ] + LIB_FILES + TEST_FILES
+RELEASE_FILES = [ "Rakefile", "README", "MIT-LICENSE", "docs/USAGE" ] + LIB_FILES + TEST_FILES + TEST_ASSETS
task :default => [ :test ]
# Run the unit tests