class Aws::Templates::Help::Rdoc::Contextualized::Filters::Chain

Chained filter documentation provider

Goes over all elements in the chain composing a list of filters

Public Instance Methods

provide() click to toggle source
# File lib/aws/templates/help/rdoc/contextualized/filters/chain.rb, line 16
def provide
  sub(text('a chain of the following filters:'), filters)
end

Private Instance Methods

filters() click to toggle source
# File lib/aws/templates/help/rdoc/contextualized/filters/chain.rb, line 22
def filters
  list do |l|
    context.filters.each { |filter| l << processed_for(filter) }
  end
end