summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bleything <ben@bleything.net>2010-02-14 14:36:21 -0800
committerBen Bleything <ben@bleything.net>2010-02-14 14:36:21 -0800
commite5205535ef673a2bae64b370369bfe76df271837 (patch)
treebc6b415549473703ee518a413c51b04c5f117152
parent783a4b28e20aeb7bfd5648d4519ddfcb7dfb2aa9 (diff)
downloadplist-e5205535ef673a2bae64b370369bfe76df271837.tar.gz
remove some cruft left over from the svn days
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 32cafc6..3b51225 100644
--- a/Rakefile
+++ b/Rakefile
@@ -29,9 +29,9 @@ RELEASE_NAME = "REL #{PKG_VERSION}"
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" ) }
+TEST_FILES = Dir.glob('test/test_*')
+TEST_ASSETS = Dir.glob('test/assets/*')
+LIB_FILES = Dir.glob('lib/**/*')
RELEASE_FILES = [ "Rakefile", "README.rdoc", "LICENSE" ] + LIB_FILES + TEST_FILES + TEST_ASSETS
task :default => [ :test ]