16 lines
255 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
2018-04-29 05:34:32 +02:00
def gpg(*)
odeprecated "the `gpg` stanza", disable_on: Time.new(2018, 12, 31)
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
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