breadcrumbs_helper.rb revision 8ec575832389c2588f0b5ca1f1dd2cc42d62eb12
path ||= ''
result = [{
last: false,
path: fancy_repository_path(repository, path: nil, oid: oid)
}]
crumbs.each_with_index do | c, i |
result << {
name: c,
last: false,
}
end
result.last[:last] = true
end
end