Class: Ukiryu::Models::VersionDetection
- Inherits:
-
Lutaml::Model::Serializable
- Object
- Lutaml::Model::Serializable
- Ukiryu::Models::VersionDetection
- Defined in:
- lib/ukiryu/models/version_detection.rb
Overview
Version detection configuration
Instance Method Summary collapse
-
#[](key) ⇒ Object
Hash-like access for Base.detect_version compatibility.
Instance Method Details
#[](key) ⇒ Object
Hash-like access for Base.detect_version compatibility
64 65 66 67 68 69 70 |
# File 'lib/ukiryu/models/version_detection.rb', line 64 def [](key) key_sym = key.to_sym # Return nil for unknown keys return nil unless respond_to?(key_sym, true) send(key_sym) end |