Module: RBatch
- Defined in:
- lib/rbatch.rb,
lib/rbatch/log.rb,
lib/rbatch/cmd.rb,
lib/rbatch/config.rb,
lib/rbatch/version.rb,
lib/rbatch/journal.rb,
lib/rbatch/run_conf.rb,
lib/rbatch/variables.rb,
lib/rbatch/controller.rb,
lib/rbatch/double_run_checker.rb
Defined Under Namespace
Modules: DoubleRunChecker Classes: Cmd, CmdException, CmdResult, Config, ConfigElement, ConfigException, Controller, DoubleRunCheckException, Journal, Log, LogException, RunConf, RunConfException, Variables, VariablesException
Constant Summary
- VERSION =
"2.4.0"- @@ctrl =
nil
Class Method Summary (collapse)
-
+ (Object) cmd(cmd_str, opt = nil)
Shortcut of RBatch::Cmd.new(cmd_str,opt).run.
-
+ (RBatch::Config) common_config
Return Common-Config Object.
-
+ (RBatch::Config) config
Return Config Object.
- + (Object) ctrl
- + (Object) init
- + (Object) vars
Class Method Details
+ (Object) cmd(cmd_str, opt = nil)
Shortcut of RBatch::Cmd.new(cmd_str,opt).run
61 |
# File 'lib/rbatch.rb', line 61 def cmd(cmd_str,opt=nil) ; @@ctrl.cmd(cmd_str,opt) ; end |
+ (RBatch::Config) common_config
Return Common-Config Object
50 |
# File 'lib/rbatch.rb', line 50 def common_config ; @@ctrl.common_config ; end |
+ (RBatch::Config) config
Return Config Object
35 |
# File 'lib/rbatch.rb', line 35 def config ; @@ctrl.config ; end |
+ (Object) ctrl
17 |
# File 'lib/rbatch.rb', line 17 def ctrl ; @@ctrl ; end |
+ (Object) init
12 13 14 |
# File 'lib/rbatch.rb', line 12 def init @@ctrl = RBatch::Controller.new end |
+ (Object) vars
20 |
# File 'lib/rbatch.rb', line 20 def vars ; @@ctrl.vars ; end |