2018-09-06 08:29:14 +02:00
|
|
|
module Cask
|
2017-07-15 14:46:11 +02:00
|
|
|
class DSL
|
2018-05-18 13:35:41 +02:00
|
|
|
module Compat
|
2018-10-24 10:00:49 +01:00
|
|
|
# TODO: can't delete this code until the merge of
|
|
|
|
# https://github.com/Homebrew/brew/pull/4730 or an equivalent.
|
|
|
|
|
2018-04-29 05:34:32 +02:00
|
|
|
def gpg(*)
|
2018-10-24 10:00:49 +01:00
|
|
|
odisabled "the `gpg` stanza"
|
2018-04-29 05:34:32 +02:00
|
|
|
end
|
|
|
|
|
2018-05-18 13:35:41 +02:00
|
|
|
def license(*)
|
2018-04-29 05:34:32 +02:00
|
|
|
odisabled "the `license` stanza"
|
2018-05-18 13:35:41 +02:00
|
|
|
end
|
2018-10-07 21:53:31 +02:00
|
|
|
|
|
|
|
def accessibility_access(*)
|
2018-10-24 10:00:49 +01:00
|
|
|
odisabled "the `accessibility_access` stanza"
|
2018-10-07 21:53:31 +02:00
|
|
|
end
|
2017-07-15 14:46:11 +02:00
|
|
|
end
|
2018-05-18 13:35:41 +02:00
|
|
|
|
|
|
|
prepend Compat
|
2017-07-15 14:46:11 +02:00
|
|
|
end
|
|
|
|
end
|