class Sprockets::Asset

def to_a

Returns Array of Assets.

case is to relink to the assets anyway.
assets in memory (and in cache) is expensive and redundant. The common use
Use Asset#included instead. Keeping a full copy of the bundle's processed

purposes.
This allows you to link to individual files for debugging

the asset's contents as a whole.
Appending all of an assets body parts together should give you

Deprecated: Expand asset into an `Array` of parts.
def to_a
  if metadata[:included]
    metadata[:included].map { |uri| @environment.load(uri) }
  else
    [self]
  end
end