Class: Context::ContextStruct Private
Overview
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
Struct describing the current execution context.
Instance Method Summary collapse
- #debug? ⇒ Boolean private
- #deferred_environment_expansion? ⇒ Boolean private
- #initialize(debug: nil, quiet: nil, verbose: nil, deferred_environment_expansion: nil) ⇒ void constructor private
- #quiet? ⇒ Boolean private
- #verbose? ⇒ Boolean private
Constructor Details
#initialize(debug: nil, quiet: nil, verbose: nil, deferred_environment_expansion: nil) ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
20 21 22 23 24 25 |
# File 'context.rb', line 20 def initialize(debug: nil, quiet: nil, verbose: nil, deferred_environment_expansion: nil) @debug = debug @quiet = quiet @verbose = verbose @deferred_environment_expansion = deferred_environment_expansion end |
Instance Method Details
#debug? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
28 29 30 |
# File 'context.rb', line 28 def debug? @debug == true end |
#deferred_environment_expansion? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
43 44 45 |
# File 'context.rb', line 43 def deferred_environment_expansion? @deferred_environment_expansion == true end |
#quiet? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
33 34 35 |
# File 'context.rb', line 33 def quiet? @quiet == true end |
#verbose? ⇒ Boolean
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
38 39 40 |
# File 'context.rb', line 38 def verbose? @verbose == true end |