2013-11-18 20:54:21 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class SafeRm < Formula
|
2014-01-01 13:22:01 +00:00
|
|
|
homepage 'https://launchpad.net/safe-rm'
|
2013-11-18 20:54:21 +00:00
|
|
|
url 'https://launchpad.net/safe-rm/trunk/0.10/+download/safe-rm-0.10.tar.gz'
|
|
|
|
sha1 '6b829ae68e1fa3c8016e15ab37fcc08caef7712f'
|
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install 'safe-rm'
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
file = "a-file"
|
|
|
|
touch file
|
|
|
|
system "#{bin}/safe-rm", file
|
2013-12-09 19:44:45 +00:00
|
|
|
assert !File.exist?(file)
|
2013-11-18 20:54:21 +00:00
|
|
|
end
|
|
|
|
end
|