lalala 4.0.0.dev.366 → 4.0.0.dev.368

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a49c0ee259195708ef035de6f41e7e37ddd55f6c
4
- data.tar.gz: f448fe8a165efdc680680aa1032333c87b2a9caf
3
+ metadata.gz: 44c250f007b62ca6dfe065496e04624542e7ee80
4
+ data.tar.gz: 57bee0fda5580c1261d1f6e7f71769c0b2e7e045
5
5
  SHA512:
6
- metadata.gz: f7fcf1d6154b3fba57abfacbd519924bce9cd5808d3d3171e9d20f575a240fb2f0a21992df52faa3154e4e2326b025062375e07a28a5467921def73c1c69aef8
7
- data.tar.gz: 61688edf7aa9e2fcee6e7bed060a5541ee0d226c4da0c55ab42c775a81b808255e5b2b533698cebaac61ff1a0fda0009cfed0389d9dbf3ee346affd49a9136d4
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>
@@ -1,6 +1,6 @@
1
1
  module Lalala
2
2
  VERSION = "4.0.0"
3
- BUILD = "366"
3
+ BUILD = "368"
4
4
 
5
5
  if BUILD != ("{{BUILD_NUMBER" + "}}") # prevent sed replacement (see script/ci)
6
6
  BUILD_VERSION = "#{VERSION}.dev.#{BUILD}"
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.366
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