class Thor

def deprecation_warning(message) #:nodoc:

:nodoc:
def deprecation_warning(message) #:nodoc:
  unless ENV['THOR_SILENCE_DEPRECATION']
    warn "Deprecation warning: #{message}\n" +
      'You can silence deprecations warning by setting the environment variable THOR_SILENCE_DEPRECATION.'
  end
end