Module: AssLauncher::Cmd::Abstract::Option::SearchPath Private
- Included in:
- Run, Main::SubCommands::Env, Main::SubCommands::MakeIb
- Defined in:
- lib/ass_launcher/cmd.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Mixin Command option
Class Method Summary collapse
- .included(base) ⇒ Object private
Class Method Details
.included(base) ⇒ Object
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.
233 234 235 236 237 238 239 |
# File 'lib/ass_launcher/cmd.rb', line 233 def self.included(base) base.option %w[--search-path -I], 'PATH', 'specify 1C:Enterprise installation path' do |s| AssLauncher.config.search_path = s s end end |