Class: Inferno::DSL::FHIRResourceValidation::CliContext
- Inherits:
-
Object
- Object
- Inferno::DSL::FHIRResourceValidation::CliContext
- Defined in:
- lib/inferno/dsl/fhir_resource_validation.rb
Constant Summary collapse
- CLICONTEXT_DEFAULTS =
{ sv: '4.0.1', doNative: false, extensions: ['any'], disableDefaultResourceFetcher: true }.freeze
Instance Attribute Summary collapse
-
#definition ⇒ Object
readonly
Returns the value of attribute definition.
Instance Method Summary collapse
-
#initialize(definition) ⇒ CliContext
constructor
A new instance of CliContext.
- #method_missing(method_name, *args) ⇒ Object
- #respond_to_missing?(_method_name, _include_private = false) ⇒ Boolean
Constructor Details
#initialize(definition) ⇒ CliContext
Returns a new instance of CliContext.
325 326 327 328 |
# File 'lib/inferno/dsl/fhir_resource_validation.rb', line 325 def initialize(definition, &) @definition = CLICONTEXT_DEFAULTS.merge(definition.deep_symbolize_keys) instance_eval(&) if block_given? end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_name, *args) ⇒ Object
331 332 333 334 335 336 337 338 339 |
# File 'lib/inferno/dsl/fhir_resource_validation.rb', line 331 def method_missing(method_name, *args) # Interpret any other method as setting a field on cliContext. # Follow the same format as `Validator.url` here: # only set the value if one is provided. # args will be an empty array if no value is provided. definition[method_name] = args[0] unless args.empty? definition[method_name] end |
Instance Attribute Details
#definition ⇒ Object (readonly)
Returns the value of attribute definition.
315 316 317 |
# File 'lib/inferno/dsl/fhir_resource_validation.rb', line 315 def definition @definition end |
Instance Method Details
#respond_to_missing?(_method_name, _include_private = false) ⇒ Boolean
342 343 344 |
# File 'lib/inferno/dsl/fhir_resource_validation.rb', line 342 def respond_to_missing?(_method_name, _include_private = false) true end |