# File lib/sprockets/bundled_asset.rb, line 42
    def encode_with(coder)
      super

      coder['body']        = body
      coder['asset_paths'] = to_a.map { |a| relativize_root_path(a.pathname) }
      coder['dependency_paths'] = dependency_paths.map { |h|
        h.merge('path' => relativize_root_path(h['path']))
      }
    end