anatomy 0.2.12 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/anatomy/renderers/html.ay +3 -3
- data/lib/anatomy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9d2449063e9b5703f02ea1991ff710b46078ec1
|
|
4
|
+
data.tar.gz: 0d946555133ba928b636cc201a3a4e64aa26579b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9bcf56a1938b02611dcc6dc3ec1975ae951d7c3229e94523894c1a275426196bf154fea730459360afa1cb3d7e4a7a84065b1b2270d9a4f61223c46f95223048
|
|
7
|
+
data.tar.gz: 3be8d5171f9fc7567d344c434d5b7429b66c02105a97ee11818d9d9fe79cd2495ab42092a1ff44d9980b7fdf1be5c9d2b904e68e5ae347e211b82cda8c70f31f
|
|
@@ -271,12 +271,12 @@ def(render(part, out = ".")):
|
|
|
271
271
|
when(part mobile-optimized?):
|
|
272
272
|
<meta(name = "viewport", content = "width=device-width, initial-scale=1")
|
|
273
273
|
|
|
274
|
-
all-js-additions(part) collect [addition]:
|
|
275
|
-
<script(type = "text/javascript", src = addition) {}
|
|
276
|
-
|
|
277
274
|
all-css-additions(part) collect [addition]:
|
|
278
275
|
<link(type = "text/css", rel = "stylesheet", href = addition)
|
|
279
276
|
|
|
277
|
+
all-js-additions(part) collect [addition]:
|
|
278
|
+
<script(type = "text/javascript", src = addition) {}
|
|
279
|
+
|
|
280
280
|
<body(class = class):
|
|
281
281
|
template
|
|
282
282
|
|
data/lib/anatomy/version.rb
CHANGED