summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorBen Bleything <ben@bleything.net>2006-09-15 16:41:41 +0000
committerBen Bleything <ben@bleything.net>2006-09-15 16:41:41 +0000
commit768d66b1ffe41b7cafb7b605b98eaeb72a6f7650 (patch)
treea80a78f64285656b2a8e29b747751c9e401230ed /Rakefile
parent576ab4da73cbf54def98079e6be6c4e24db373c6 (diff)
downloadplist-768d66b1ffe41b7cafb7b605b98eaeb72a6f7650.tar.gz
fix one error on gem install -t, now we have another...
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 628b106..2c25389 100644
--- a/Rakefile
+++ b/Rakefile
@@ -29,7 +29,7 @@ RELEASE_NAME = "REL #{PKG_VERSION}"
RUBYFORGE_PROJECT = "plist"
RUBYFORGE_USER = ENV['RUBYFORGE_USER']
-TEST_FILES = Dir.glob('test/**/*').delete_if {|item| item.include?( "\.svn" ) }
+TEST_FILES = Dir.glob('test/**/*').delete_if {|item| item.include?( "\.svn" ) }.delete_if{|item| item.include?( "assets" ) }
RELEASE_FILES = [ "Rakefile", "README", "MIT-LICENSE" ] + TEST_FILES + Dir.glob( "lib/*" ).delete_if { |item| item.include?( "\.svn" ) }
task :default => [ :test ]