class Roadie::Stylesheet

def each_inlinable_block(&block)

Deprecated:
  • Iterate over the #{blocks} instead. Will be removed on version 4.0.

Other tags:
    Yieldparam: properties -
    Yieldparam: selector -

Other tags:
    Yield: -
def each_inlinable_block(&block)
  # #map and then #each in order to support chained enumerations, etc. if
  # no block is provided
  inlinable_blocks.map { |style_block|
    [style_block.selector, style_block.properties]
  }.each(&block)
end