Class: OodCore::Job::Adapters::Helper Private
- Inherits:
-
Object
- Object
- OodCore::Job::Adapters::Helper
- Defined in:
- lib/ood_core/job/adapters/helper.rb
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.
Class Method Summary collapse
-
.bin_path(cmd, bin_default, bin_overrides) ⇒ String
private
Get the configured path to a command allowing overrides from bin_overrides.
Class Method Details
.bin_path(cmd, bin_default, bin_overrides) ⇒ String
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.
Get the configured path to a command allowing overrides from bin_overrides
12 13 14 |
# File 'lib/ood_core/job/adapters/helper.rb', line 12 def self.bin_path(cmd, bin_default, bin_overrides) bin_overrides.fetch(cmd.to_s) { Pathname.new(bin_default.to_s).join(cmd.to_s).to_s } end |