Class: LambdaRubyBundler::CLI::BaseRunner Private
- Inherits:
-
Object
- Object
- LambdaRubyBundler::CLI::BaseRunner
- 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
Instance Attribute Summary collapse
- #app_path ⇒ Object readonly private
- #root_path ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(root_path, app_path) ⇒ BaseRunner
constructor
private
A new instance of BaseRunner.
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_path ⇒ Object (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_path ⇒ Object (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 |