Class: Licensed::Commands::Command

Inherits:
Object
  • Object
show all
Defined in:
lib/licensed/commands/command.rb

Direct Known Subclasses

Cache, Environment, List, Notices, Status

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config:) ⇒ Command

Returns a new instance of Command.



9
10
11
# File 'lib/licensed/commands/command.rb', line 9

def initialize(config:)
  @config = config
end

Instance Attribute Details

#configObject (readonly)

Returns the value of attribute config.



5
6
7
# File 'lib/licensed/commands/command.rb', line 5

def config
  @config
end

#optionsObject (readonly)

Returns the value of attribute options.



7
8
9
# File 'lib/licensed/commands/command.rb', line 7

def options
  @options
end

#reporterObject (readonly)

Returns the value of attribute reporter.



6
7
8
# File 'lib/licensed/commands/command.rb', line 6

def reporter
  @reporter
end

Instance Method Details

#create_reporter(options) ⇒ Object

Create a reporter to use during a command run

options - The options the command was run with

Raises an error



43
44
45
# File 'lib/licensed/commands/command.rb', line 43

def create_reporter(options)
  raise "`create_reporter` must be implemented by commands"
end

#run(**options) ⇒ Object

Run the command

options - Options to run the command with

Returns whether the command was a success



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/licensed/commands/command.rb', line 18

def run(**options)
  @options = options
  @reporter = create_reporter(options)
  begin
    result = reporter.report_run(self) do |report|
      # allow additional report data to be given by commands
      yield report if block_given?

      config.apps.sort_by { |app| app["name"] }
                 .map { |app| run_app(app) }
                 .all?
    end
  ensure
    @options = nil
    @reporter = nil
  end

  result
end