Sha256: 88e7225ad772ae5f52f5db25d62a38e839e1b576b96b314df7cd0384a4892817
Contents?: true
Size: 413 Bytes
Versions: 43
Compression:
Stored size: 413 Bytes
Contents
desc 'clean', 'Remove unneeded files from the current directory' def clean announce 'Removing tempfiles' for pattern in %w[ webrat-* capybara-* tmp/webrat-* tmp/capybara-* tmp/rtex/* log/*.log ] note pattern puts `rm -vfR #{pattern}` end announce 'Finding recursively and removing backup files' for pattern in %w[ *~ ] note pattern `find . -name #{pattern} -exec rm {} ';'` end end
Version data entries
43 entries across 43 versions & 1 rubygems