Class: Brew::Commands::Update

Inherits:
Object
  • Object
show all
Defined in:
lib/brew/commands/update.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_pathObject (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

#optionsObject (readonly)

Returns the value of attribute options.



9
10
11
# File 'lib/brew/commands/update.rb', line 9

def options
  @options
end

#system_runnerObject (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 #{options}".squish
  system_runner.print_output(update_command)
rescue StandardError => e
  raise Brew::ExecutionError, e
end