Module: Octokit::Warnable

Included in:
Client, EnterpriseAdminClient, EnterpriseManagementConsoleClient
Defined in:
lib/octokit/warnable.rb

Overview

Allows warnings to be suppressed via environment variable.

Class Method Summary collapse

Class Method Details

.octokit_warn(*message) ⇒ nil

Wrapper around Kernel#warn to print warnings unless OCTOKIT_SILENT is set to true.

Returns:

  • (nil)


12
13
14
# File 'lib/octokit/warnable.rb', line 12

def octokit_warn(*message)
  warn message unless ENV['OCTOKIT_SILENT']
end