geotag: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:25:05 +01:00
parent d28704a7b9
commit 5b3cc20851
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 13 additions and 13 deletions

View File

@ -1,20 +1,20 @@
cask 'geotag' do
version '4.9'
sha256 'ad90415ca66aeea9029e00eeb829ad9706365bbd44340d3467f40d71e5c1d4b4'
cask "geotag" do
version "4.9"
sha256 "ad90415ca66aeea9029e00eeb829ad9706365bbd44340d3467f40d71e5c1d4b4"
url "https://www.snafu.org/GeoTag/GeoTag-#{version}.dmg"
appcast 'https://github.com/marchyman/GeoTag/releases.atom'
name 'GeoTag'
homepage 'https://www.snafu.org/GeoTag/'
appcast "https://github.com/marchyman/GeoTag/releases.atom"
name "GeoTag"
homepage "https://www.snafu.org/GeoTag/"
depends_on macos: '>= :sierra'
depends_on formula: 'exiftool'
depends_on macos: ">= :sierra"
depends_on formula: "exiftool"
app 'GeoTag.app'
app "GeoTag.app"
zap trash: [
'~/Library/Caches/org.snafu.GeoTag',
'~/Library/Preferences/org.snafu.GeoTag.plist',
'~/Library/Saved Application State/org.snafu.GeoTag.savedState',
]
"~/Library/Caches/org.snafu.GeoTag",
"~/Library/Preferences/org.snafu.GeoTag.plist",
"~/Library/Saved Application State/org.snafu.GeoTag.savedState",
]
end