mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
24 lines
614 B
Ruby
24 lines
614 B
Ruby
cask "massreplaceit" do
|
|
version "3.1.2"
|
|
sha256 :no_check
|
|
|
|
url "http://www.hexmonkeysoftware.com/files/MassReplaceIt.dmg"
|
|
name "MassReplaceIt"
|
|
desc "Find and replace utility"
|
|
homepage "http://www.hexmonkeysoftware.com/"
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(/MassReplaceIt\s+(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
app "MassReplaceIt.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/MassReplaceIt",
|
|
"~/Library/Caches/com.hexmonkey.massreplaceit",
|
|
"~/Library/Preferences/com.hexmonkey.massreplaceit.plist",
|
|
"~/Library/Saved Application State/com.hexmonkey.massreplaceit.savedState",
|
|
]
|
|
end
|