Class: Crowbar::Client::Command::Batch::Build

Inherits:
Crowbar::Client::Command::Base show all
Defined in:
lib/crowbar/client/command/batch/build.rb

Overview

Implementation for the batch build command

Instance Attribute Summary

Attributes inherited from Crowbar::Client::Command::Base

#args, #options, #stderr, #stdin, #stdout

Instance Method Summary collapse

Methods inherited from Crowbar::Client::Command::Base

#initialize

Constructor Details

This class inherits a constructor from Crowbar::Client::Command::Base

Instance Method Details

#executeObject



51
52
53
54
55
56
57
58
59
60
# File 'lib/crowbar/client/command/batch/build.rb', line 51

def execute
  request.process do |request|
    case request.code
    when 200
      say "Successfully built batch"
    else
      err request.parsed_response["error"]
    end
  end
end

#requestObject



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/crowbar/client/command/batch/build.rb', line 27

def request
  args.easy_merge!(
    includes: options.includes,
    excludes: options.excludes
  )

  args.file =
    case args.file
    when "-"
      stdin.to_io
    when File
      args.file
    else
      File.new(
        args.file,
        File::RDONLY
      )
    end

  @request ||= Request::Batch::Build.new(
    args
  )
end