class DTK::DSL::ServiceAndComponentInfo::TransformTo::Parser

Private Instance Methods

add_dependencies_to_output_hash!(dependencies) click to toggle source
# File lib/dsl/service_and_component_info/transform_to/parser.rb, line 35
def add_dependencies_to_output_hash!(dependencies)
end
module_ref() click to toggle source
# File lib/dsl/service_and_component_info/transform_to/parser/top_dsl.rb, line 30
def module_ref
  info_object.module_ref
end
update_output_hash__dependencies?() click to toggle source
# File lib/dsl/service_and_component_info/transform_to/parser.rb, line 26
def update_output_hash__dependencies?
  if component_dsl_canonical_hash = input_file_hash?(:module)
    if dependencies = component_dsl_canonical_hash['dependencies']
      add_dependencies_to_output_hash!(dependencies)
      output_hash
    end
  end
end