class Aws::Templates::Help::Rdoc::Parametrized::Transformations::AsChain

Chained transformation documentation

Generates documentation blocks for all transformation steps in the chain.

Public Instance Methods

provide() click to toggle source
# File lib/aws/templates/help/rdoc/parametrized/transformations/as_chain.rb, line 16
def provide
  sub(text('as chain of transformations:'), transformations)
end

Private Instance Methods

transformations() click to toggle source
# File lib/aws/templates/help/rdoc/parametrized/transformations/as_chain.rb, line 22
def transformations
  context.components
         .lazy
         .map { |c| processed_for(c) }
         .each_with_object(list) { |part, l| l << part }
end