20 lines
356 B
Ruby
20 lines
356 B
Ruby
module Cask
|
|
class DSL
|
|
module Compat
|
|
def gpg(*)
|
|
odeprecated "the `gpg` stanza", disable_on: Time.new(2018, 12, 31)
|
|
end
|
|
|
|
def license(*)
|
|
odisabled "the `license` stanza"
|
|
end
|
|
|
|
def accessibility_access(*)
|
|
odeprecated "the `accessibility_access` stanza"
|
|
end
|
|
end
|
|
|
|
prepend Compat
|
|
end
|
|
end
|