Class: LambdaRubyBundler::CLI::BaseRunner Private

Inherits:
Object
  • Object
show all
Defined in:
lib/lambda_ruby_bundler/cli/base_runner.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Runs the executor.

Direct Known Subclasses

CacheRunner, StandardRunner

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(root_path, app_path) ⇒ BaseRunner

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of BaseRunner.



10
11
12
13
# File 'lib/lambda_ruby_bundler/cli/base_runner.rb', line 10

def initialize(root_path, app_path)
  @root_path = root_path
  @app_path = app_path
end

Instance Attribute Details

#app_pathObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



8
9
10
# File 'lib/lambda_ruby_bundler/cli/base_runner.rb', line 8

def app_path
  @app_path
end

#root_pathObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



8
9
10
# File 'lib/lambda_ruby_bundler/cli/base_runner.rb', line 8

def root_path
  @root_path
end