Module: AppStack
- Defined in:
- lib/app_stack.rb,
lib/app_stack/version.rb,
lib/app_stack/stack_app.rb,
lib/app_stack/copy_list_builder.rb,
lib/app_stack/local_files_parser.rb
Overview
AppStack module
Defined Under Namespace
Modules: CopyListBuilder, LocalFilesParser Classes: ParseError, StackApp
Constant Summary collapse
- DEFAULT_CONF_FILE =
'.app_stack.yml'- VERSION =
'1.3.3'
Class Method Summary collapse
-
.stackup!(argv = ARGV) ⇒ Object
handle the execution to main class:.
Class Method Details
.stackup!(argv = ARGV) ⇒ Object
handle the execution to main class:
20 21 22 23 |
# File 'lib/app_stack.rb', line 20 def stackup!(argv = ARGV) @options = CliOptions.new(argv) StackApp.new(@options.conf_file, @options).stackup! end |