Class: Brew::Commands::Update
- Inherits:
-
Object
- Object
- Brew::Commands::Update
- Defined in:
- lib/brew/commands/update.rb
Instance Attribute Summary collapse
-
#brew_path ⇒ Object
readonly
Returns the value of attribute brew_path.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#system_runner ⇒ Object
readonly
Returns the value of attribute system_runner.
Instance Method Summary collapse
- #execute! ⇒ Object
-
#initialize(brew_path, **kwargs) ⇒ Update
constructor
A new instance of Update.
Constructor Details
#initialize(brew_path, **kwargs) ⇒ Update
Returns a new instance of Update.
11 12 13 14 15 |
# File 'lib/brew/commands/update.rb', line 11 def initialize(brew_path, **kwargs) @brew_path = brew_path @options = parse_args(kwargs) @system_runner = SystemRunner.new end |
Instance Attribute Details
#brew_path ⇒ Object (readonly)
Returns the value of attribute brew_path.
9 10 11 |
# File 'lib/brew/commands/update.rb', line 9 def brew_path @brew_path end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
9 10 11 |
# File 'lib/brew/commands/update.rb', line 9 def @options end |
#system_runner ⇒ Object (readonly)
Returns the value of attribute system_runner.
9 10 11 |
# File 'lib/brew/commands/update.rb', line 9 def system_runner @system_runner end |
Instance Method Details
#execute! ⇒ Object
17 18 19 20 21 22 |
# File 'lib/brew/commands/update.rb', line 17 def execute! update_command = "#{brew_path} update #{}".squish system_runner.print_output(update_command) rescue StandardError => e raise Brew::ExecutionError, e end |