rest_framework 0.6.11 → 0.6.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/app/views/layouts/rest_framework.html.erb +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83aa878ffb9690b53552092a99987e67a9930f321c9ca02b97123b003d6c6f89
|
4
|
+
data.tar.gz: d3e61c32bda1e7815822caabcedf508b03eec417f62507539d6d0e128697dc8e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c78e80cba4939aa6bd951f93c055f27a07ff2fa0e6f24fb3bf5edfc3de35297fd6090dc98dbd0b9ecad027d80abb4602c1ebd898ef0ae43ccaf8a22018108d8f
|
7
|
+
data.tar.gz: dc8240f44f4a315d47f47727fac2aae6b1ba8da73c0faecffa3b9e4174709e5d0966e7776aa38893801ff8ec2b83ac60a50f3ff963ad8a4d3873bd077c9f5af8
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.12
|
@@ -22,16 +22,17 @@
|
|
22
22
|
<nav>
|
23
23
|
<ol class="breadcrumb">
|
24
24
|
<%
|
25
|
-
breadcrumbs = request.path.split("/").inject([
|
25
|
+
breadcrumbs = request.path.split("/").inject([]) { |breadcrumbs, part|
|
26
26
|
# Ignore blank parts of the path (leading slash or double-slashes).
|
27
27
|
next breadcrumbs if part.blank?
|
28
28
|
|
29
|
-
last_path = breadcrumbs
|
29
|
+
last_path = breadcrumbs.last&.first || "/"
|
30
30
|
breadcrumbs << [
|
31
31
|
[last_path, part].join(last_path[-1] == "/" ? "" : "/"),
|
32
32
|
part,
|
33
33
|
]
|
34
|
-
|
34
|
+
|
35
|
+
next breadcrumbs
|
35
36
|
}
|
36
37
|
%>
|
37
38
|
<% breadcrumbs.each_with_index do |(path, label), i| %>
|