bundle-new/lib/bundler/deprecate.rb

16 lines
270 B
Ruby
Raw Normal View History

2019-10-06 15:45:34 +00:00
module Bundler
if defined? ::Deprecate
Deprecate = ::Deprecate
elsif defined? Gem::Deprecate
Deprecate = Gem::Deprecate
else
class Deprecate; end
end
unless Deprecate.respond_to?(:skip_during)
def Deprecate.skip_during; yield; end
end
end