rails_layout 1.0.4 → 1.0.5
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/CHANGELOG.textile +4 -0
- data/README.textile +1 -4
- data/lib/generators/layout/install/templates/foundation5-application.html.erb +1 -1
- data/lib/generators/layout/install/templates/foundation5-application.html.haml +1 -1
- data/lib/generators/layout/install/templates/foundation5-application.html.slim +1 -1
- data/lib/rails_layout/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: ff0a511796be3874b92dc7796a2fa0a4e76ae15c
|
|
4
|
+
data.tar.gz: b4b0a01168936acf7461a984dba82384252bb96f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba0415eec489a62285a0251e7de5c061c018de2de218250448c6f63c593d79aa93683767c6510ff57a1600f77f649d26b037b9603934e864565004470b64295d
|
|
7
|
+
data.tar.gz: 3c2ce9e3163c8ab08a2247c6589286bec60b352e15d53e42a9957b282955b17e8c6553a49a0053103db545020af54c85673dce8728fbf0ffcc44ee47d93b836a
|
data/CHANGELOG.textile
CHANGED
data/README.textile
CHANGED
|
@@ -58,10 +58,7 @@ h4. Zurb Foundation 5.0
|
|
|
58
58
|
gem 'foundation-rails'
|
|
59
59
|
</pre>
|
|
60
60
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
* "Foundation 5 requires JavaScript included in BODY not HEAD":https://github.com/zurb/foundation/issues/3643
|
|
64
|
-
* "Foundation 5 topbar incompatible with Rails Turbolinks":https://github.com/zurb/foundation/issues/3642
|
|
61
|
+
Foundation 5.0.3 was released January 15, 2014. Foundation versions 5.0.1 and 5.0.2 were "incompatible with Rails Turbolinks":https://github.com/zurb/foundation/issues/3642 and the Rails asset pipeline, so use 5.0.3 or newer with Rails.
|
|
65
62
|
|
|
66
63
|
h4. Zurb Foundation 4.0
|
|
67
64
|
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
<title><%%= content_for?(:title) ? yield(:title) : "<%= app_name.underscore.titleize %>" %></title>
|
|
6
6
|
<meta name="description" content="<%%= content_for?(:description) ? yield(:description) : "<%= app_name.underscore.titleize %>" %>">
|
|
7
7
|
<%%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
|
|
8
|
-
<%%= javascript_include_tag "application", "data-turbolinks-track" => true %>
|
|
9
8
|
<%%# Modernizr is required for Zurb Foundation %>
|
|
10
9
|
<%%= javascript_include_tag "vendor/modernizr" %>
|
|
10
|
+
<%%= javascript_include_tag "application", "data-turbolinks-track" => true %>
|
|
11
11
|
<%%= csrf_meta_tags %>
|
|
12
12
|
</head>
|
|
13
13
|
<body>
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
%title= content_for?(:title) ? yield(:title) : '<%= app_name.underscore.titleize %>'
|
|
6
6
|
%meta{:name => "description", :content => "#{content_for?(:description) ? yield(:description) : '<%= app_name.underscore.titleize %>'}"}
|
|
7
7
|
= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true
|
|
8
|
-
= javascript_include_tag "application", "data-turbolinks-track" => true
|
|
9
8
|
-# Modernizr is required for Zurb Foundation
|
|
10
9
|
= javascript_include_tag "vendor/modernizr"
|
|
10
|
+
= javascript_include_tag "application", "data-turbolinks-track" => true
|
|
11
11
|
= csrf_meta_tags
|
|
12
12
|
%body
|
|
13
13
|
%header
|
|
@@ -6,9 +6,9 @@ html
|
|
|
6
6
|
= content_for?(:title) ? yield(:title) : '<%= app_name.underscore.titleize %>'
|
|
7
7
|
meta name="description" content="#{content_for?(:description) ? yield(:description) : '<%= app_name.underscore.titleize %>'}"
|
|
8
8
|
== stylesheet_link_tag "application", :media => "all", "data-turbolinks-track" => true
|
|
9
|
-
== javascript_include_tag "application", "data-turbolinks-track" => true
|
|
10
9
|
/ Modernizr is required for Zurb Foundation
|
|
11
10
|
== javascript_include_tag "vendor/modernizr"
|
|
11
|
+
== javascript_include_tag "application", "data-turbolinks-track" => true
|
|
12
12
|
== csrf_meta_tags
|
|
13
13
|
body
|
|
14
14
|
header
|
data/lib/rails_layout/version.rb
CHANGED