lalala 4.0.0.dev.366 → 4.0.0.dev.368
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 44c250f007b62ca6dfe065496e04624542e7ee80
|
|
4
|
+
data.tar.gz: 57bee0fda5580c1261d1f6e7f71769c0b2e7e045
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f825b2b9897fe468001a0c1d43e9e0579d7dc753f0719f918a7ff8d1da0f48ed00517f5f851504c7882d7f615fba176c097788c083c7e390c88b0dd7ea77963
|
|
7
|
+
data.tar.gz: 45c77800fb7d61bd690b773971c7a87b0930626de1fa933418bc035d9dce327d4382660284adff7e91684a63766c38f0322ebb8f9dda92fe41deae56f162df0a
|
|
@@ -79,6 +79,10 @@ module Lalala
|
|
|
79
79
|
copy_file 'application_mailer.html.erb', 'app/views/layouts/application_mailer.html.erb'
|
|
80
80
|
end
|
|
81
81
|
|
|
82
|
+
def copy_default_layout
|
|
83
|
+
copy_file 'application.html.erb', 'app/views/layouts/application.html.erb'
|
|
84
|
+
end
|
|
85
|
+
|
|
82
86
|
def create_assets
|
|
83
87
|
generate "lalala:assets"
|
|
84
88
|
end
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
|
3
|
+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
|
4
|
+
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
|
5
|
+
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
|
|
6
|
+
<head>
|
|
7
|
+
<meta charset="utf-8">
|
|
8
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
9
|
+
|
|
10
|
+
<title></title>
|
|
11
|
+
|
|
12
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui" />
|
|
13
|
+
|
|
14
|
+
<meta name="description" content="<%= og_description %>" />
|
|
15
|
+
<meta name="distribution" content="global" />
|
|
16
|
+
<% if request.host.match /.*\.a\.mrhenry\.eu.*/ %>
|
|
17
|
+
<meta name="robots" content="noindex, nofollow" />
|
|
18
|
+
<% else %>
|
|
19
|
+
<meta name="robots" content="index, follow" />
|
|
20
|
+
<% end %>
|
|
21
|
+
<meta name="revisit-after" content="31 days" />
|
|
22
|
+
<meta name="author" content="" />
|
|
23
|
+
<meta name="publisher" content="Mr. Henry" />
|
|
24
|
+
<meta name="copyright" content="" />
|
|
25
|
+
|
|
26
|
+
<link rel="shortcut icon" href="/assets/favicon.ico"/>
|
|
27
|
+
|
|
28
|
+
<%= javascript_include_tag "modernizr" %>
|
|
29
|
+
<%= stylesheet_link_tag "application", media: "all" %>
|
|
30
|
+
|
|
31
|
+
<%= csrf_meta_tags %>
|
|
32
|
+
</head>
|
|
33
|
+
<body>
|
|
34
|
+
|
|
35
|
+
<!--[if lt IE 9]>
|
|
36
|
+
<p class="chromeframe" style="background-color: rgb(255,65,45); color: white; font-size: 12px; margin: 0; padding: 7px; text-align: center;">
|
|
37
|
+
You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/" style="color: black;">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true" style="color: black;">activate Google Chrome Frame</a> to improve your experience.</p>
|
|
38
|
+
<![endif]-->
|
|
39
|
+
|
|
40
|
+
<%= yield %>
|
|
41
|
+
|
|
42
|
+
<script type="text/javascript">
|
|
43
|
+
// Bridge between I18n YAML & JS
|
|
44
|
+
window.translations = { };
|
|
45
|
+
</script>
|
|
46
|
+
|
|
47
|
+
<%= javascript_include_tag "application" %>
|
|
48
|
+
|
|
49
|
+
<script type="text/javascript">
|
|
50
|
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
51
|
+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
52
|
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
53
|
+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
54
|
+
|
|
55
|
+
ga('create', 'UA-XXXXXX-XX', 'auto');
|
|
56
|
+
ga('require', 'displayfeatures');
|
|
57
|
+
ga('send', 'pageview');
|
|
58
|
+
</script>
|
|
59
|
+
</body>
|
|
60
|
+
</html>
|
data/lib/lalala/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lalala
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.0.dev.
|
|
4
|
+
version: 4.0.0.dev.368
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simon Menke
|
|
@@ -1416,6 +1416,7 @@ files:
|
|
|
1416
1416
|
- lib/generators/lalala/install/templates/active_admin.rb.erb
|
|
1417
1417
|
- lib/generators/lalala/install/templates/admin_pages.rb
|
|
1418
1418
|
- lib/generators/lalala/install/templates/admin_users.rb
|
|
1419
|
+
- lib/generators/lalala/install/templates/application.html.erb
|
|
1419
1420
|
- lib/generators/lalala/install/templates/application_mailer.html.erb
|
|
1420
1421
|
- lib/generators/lalala/install/templates/dashboard.rb
|
|
1421
1422
|
- lib/generators/lalala/install/templates/devise.rb.erb
|