lesli 5.1.5 → 5.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e24de4908312356f83644204fed2893d2b815f55587b892a232f0f2bb83fe84b
|
|
4
|
+
data.tar.gz: 30c8bd8094421a25b182a4cd67b5c6f5ee5a38e83100cbaf5440bbb42d23dc31
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e638dbf98f29572fc6f174431c5b6d2b0b0ada5adbfceb4f533d2f53d64099ad5ca4eaa70664f74d3cb09a6fb355a08e2aa7648db43792f8e4c89eb45f1a052
|
|
7
|
+
data.tar.gz: 0f54b0fa2c61de02365d8d021b16acf2c8aa06f7dc2f41b1656b861ba6e6b8f51953d9353a15eddda5eb1180d8e9aea97286722c6198461fddd23e8d671609ab
|
|
@@ -37,6 +37,9 @@ Building a better future, one line of code at a time.
|
|
|
37
37
|
<%= render(partial: "lesli/partials/application-lesli-data") %>
|
|
38
38
|
<%= render(partial: "lesli/partials/application-lesli-assets") %>
|
|
39
39
|
<%= render(partial: "lesli/partials/application-lesli-analytics") %>
|
|
40
|
+
<% if content_for?(:head) %>
|
|
41
|
+
<%= yield :head %>
|
|
42
|
+
<% end %>
|
|
40
43
|
</head>
|
|
41
44
|
<body class="<%= lesli_application_body_class() %>">
|
|
42
45
|
<%= render(partial: "lesli/partials/application-lesli-header") %>
|
|
@@ -35,10 +35,9 @@ Building a better future, one line of code at a time.
|
|
|
35
35
|
<!DOCTYPE html>
|
|
36
36
|
<html lang="en">
|
|
37
37
|
<head>
|
|
38
|
+
<%= render(partial: "lesli/partials/application-lesli-head") %>
|
|
38
39
|
<% if content_for?(:head) %>
|
|
39
40
|
<%= yield :head %>
|
|
40
|
-
<% else %>
|
|
41
|
-
<%= render(partial: "lesli/partials/application-lesli-head") %>
|
|
42
41
|
<% end %>
|
|
43
42
|
</head>
|
|
44
43
|
<body class="<%= lesli_application_body_class() %>">
|
|
@@ -36,8 +36,7 @@ Building a better future, one line of code at a time.
|
|
|
36
36
|
<% tracking_id = Rails.application.credentials.dig(:providers, :google, :tag_manager) || ENV["PROVIDERS_GOOGLE_TAG_MANAGER"] %>
|
|
37
37
|
|
|
38
38
|
<% # check if analytics is enabled in the settings file %>
|
|
39
|
-
<%
|
|
40
|
-
<% if Rails.env.production? && enable_analytics && tracking_id %>
|
|
39
|
+
<% if Rails.env.production? && tracking_id %>
|
|
41
40
|
|
|
42
41
|
<% unless protected_controllers.include?(controller_name) %>
|
|
43
42
|
|
data/lib/lesli/version.rb
CHANGED