23 lines
442 B
Ruby
Raw Normal View History

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
# 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(*)
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
def accessibility_access(*)
odisabled "the `accessibility_access` stanza"
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