bhook 0.1.5 → 0.1.6
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/Gemfile.lock +1 -1
- data/lib/bhook/theme/page.erb +10 -12
- data/lib/bhook/version.rb +1 -1
- 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: 17b89ce589acd0d94792144dd145e2470612ebdd7ea566cba91e4174e9bc414c
|
|
4
|
+
data.tar.gz: d819bec1768b629f94ef192f9053e35df93a9c966246d50c85dc3684bc4fa543
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b4c46ca4fd8820d9898bf5cefe79c8fd82bff9f2aebfa9aba41f75c1920d898441624be2740c528b357f1548e537f1651dc737df26a7f9c888278aa2aff91e79
|
|
7
|
+
data.tar.gz: 9b8fbcfec88fc338ab13ec03cafe6cbe73752ed3b3cae23cb4f98117f0f8913756743e3d930f62d91d5b3c0ff71e3cbe864f99fab0db110539ecbcba9f767213
|
data/Gemfile.lock
CHANGED
data/lib/bhook/theme/page.erb
CHANGED
|
@@ -48,7 +48,16 @@
|
|
|
48
48
|
padding: 1em;
|
|
49
49
|
}
|
|
50
50
|
</style>
|
|
51
|
-
|
|
51
|
+
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
52
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CT9TWBW0WR"></script>
|
|
53
|
+
<script>
|
|
54
|
+
window.dataLayer = window.dataLayer || [];
|
|
55
|
+
function gtag(){dataLayer.push(arguments);}
|
|
56
|
+
gtag('js', new Date());
|
|
57
|
+
|
|
58
|
+
gtag('config', 'G-CT9TWBW0WR');
|
|
59
|
+
</script>
|
|
60
|
+
<title><%= src_title -%></title>
|
|
52
61
|
</head>
|
|
53
62
|
<body>
|
|
54
63
|
<div class="body container">
|
|
@@ -69,16 +78,5 @@
|
|
|
69
78
|
</div>
|
|
70
79
|
</div>
|
|
71
80
|
</div>
|
|
72
|
-
<script type='text/javascript'>
|
|
73
|
-
var _gaq = _gaq || [];
|
|
74
|
-
_gaq.push(['_setAccount', 'UA-24685691-1']);
|
|
75
|
-
_gaq.push(['_trackPageview']);
|
|
76
|
-
|
|
77
|
-
(function() {
|
|
78
|
-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
79
|
-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
80
|
-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
81
|
-
})();
|
|
82
|
-
</script>
|
|
83
81
|
</body>
|
|
84
82
|
</html>
|
data/lib/bhook/version.rb
CHANGED