Class: Crowbar::Client::Command::Repository::ActivateAll
- Defined in:
- lib/crowbar/client/command/repository/activate_all.rb
Instance Attribute Summary
Attributes inherited from Base
#args, #options, #stderr, #stdin, #stdout
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Crowbar::Client::Command::Base
Instance Method Details
#execute ⇒ Object
28 29 30 31 32 33 34 35 36 37 |
# File 'lib/crowbar/client/command/repository/activate_all.rb', line 28 def execute request.process do |request| case request.code when 200 say "Successfully activated all repositories" else err request.parsed_response["error"] end end end |
#request ⇒ Object
22 23 24 25 26 |
# File 'lib/crowbar/client/command/repository/activate_all.rb', line 22 def request @request ||= Request::Repository::ActivateAll.new( args ) end |