Class: CC::Yaml::Nodes::OpenMapping

Inherits:
Mapping show all
Defined in:
lib/cc/yaml/nodes/open_mapping.rb

Direct Known Subclasses

EngineList

Instance Attribute Summary

Attributes inherited from Mapping

#mapping

Attributes inherited from Node

#parent

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Mapping

#==, #[], #[]=, aliases, #check_duplicates, #deep_verify, define_map_accessor, #each_scalar, #empty?, #include?, #inspect, map, #mapped_key, mapping, #nested_warnings, #prepare, required, #set_warnings, #subnode_for, #verify, #verify_errors, #verify_required, #visit_key_value, #visit_mapping, #visit_pair, #with_value!

Methods inherited from Node

#deep_verify, #dup, #error, #errors, #errors?, has_default?, #initialize, #method_missing, #nested_warning, #nested_warnings, #prepare, #respond_to_missing?, #to_json, #to_s, #verify, #visit_child, #visit_mapping, #visit_pair, #visit_scalar, #visit_sequence, #visit_unexpected, #warning, #warnings, #warnings?, #with_value

Constructor Details

This class inherits a constructor from CC::Yaml::Nodes::Node

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class CC::Yaml::Nodes::Node

Class Method Details

.default_type(identifier = nil) ⇒ Object



4
5
6
7
# File 'lib/cc/yaml/nodes/open_mapping.rb', line 4

def self.default_type(identifier = nil)
  @default_type = Nodes[identifier] if identifier
  @default_type ||= superclass.respond_to?(:default_type) ? superclass.default_type : Scalar
end

.subnode_for(key) ⇒ Object



9
10
11
# File 'lib/cc/yaml/nodes/open_mapping.rb', line 9

def self.subnode_for(key)
  super(key) || default_type
end

Instance Method Details

#accept_key?(key) ⇒ Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/cc/yaml/nodes/open_mapping.rb', line 13

def accept_key?(key)
  true
end