rails_layout 1.0.11 → 1.0.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.textile +5 -0
- data/lib/generators/layout/install/templates/application.css.scss +5 -3
- data/lib/generators/layout/install/templates/bootstrap2-application.html.erb +2 -2
- data/lib/generators/layout/install/templates/bootstrap2-application.html.haml +2 -2
- data/lib/generators/layout/install/templates/bootstrap2-application.html.slim +2 -2
- data/lib/generators/layout/install/templates/bootstrap3-application.html.erb +2 -2
- data/lib/generators/layout/install/templates/bootstrap3-application.html.haml +2 -2
- data/lib/generators/layout/install/templates/bootstrap3-application.html.slim +2 -2
- data/lib/generators/layout/install/templates/foundation4-application.html.erb +2 -2
- data/lib/generators/layout/install/templates/foundation4-application.html.haml +2 -2
- data/lib/generators/layout/install/templates/foundation4-application.html.slim +2 -2
- data/lib/generators/layout/install/templates/foundation5-application.html.erb +2 -2
- data/lib/generators/layout/install/templates/foundation5-application.html.haml +2 -2
- data/lib/generators/layout/install/templates/foundation5-application.html.slim +2 -2
- data/lib/generators/layout/install/templates/none-application.html.erb +2 -2
- data/lib/generators/layout/install/templates/none-application.html.haml +2 -2
- data/lib/generators/layout/install/templates/none-application.html.slim +2 -2
- data/lib/generators/layout/install/templates/simple-application.html.erb +2 -2
- data/lib/generators/layout/install/templates/simple-application.html.haml +2 -2
- data/lib/generators/layout/install/templates/simple-application.html.slim +2 -2
- data/lib/rails_layout/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d27064b78672b3443e77540a3d1188efe6850bfd
|
4
|
+
data.tar.gz: cfca12b189819c4eb29e75a2ee93b481b6e7ce47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ccdf6c7168e18bf8f0f09cc9e0c04405d2fb2cd0fbb427112dce141f1ce2c26afb866fd5eddb2bfb62366ddf029b62c5cdf4d3e3691bb6c1b9f79e01eeb18de8
|
7
|
+
data.tar.gz: 4a84b392fb74fed5ded63aebff044d26ef6b439ff8cc726b40c6b82e6d7b1693e3b985c2c4b94c09a8b8b2acf64f8c5b05c0a6af42d14499b070311e3610e4cc
|
data/CHANGELOG.textile
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
h1. CHANGELOG
|
2
2
|
|
3
|
+
h3. 1.0.12 March 23, 2014
|
4
|
+
|
5
|
+
* Rails 4.1.0 changes the application.css file
|
6
|
+
* Rails 4.1.0 changes quote marks in the application.html.erb file
|
7
|
+
|
3
8
|
h3. 1.0.11 March 8, 2014
|
4
9
|
|
5
10
|
* Foundation 5.2 no longer needs a 'span' in the navigation bar
|
@@ -5,9 +5,11 @@
|
|
5
5
|
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
6
|
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
7
|
*
|
8
|
-
* You're free to add application-wide styles to this file and they'll appear at the
|
9
|
-
* compiled file
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any styles
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
+
* file per style scope.
|
10
12
|
*
|
11
|
-
*= require_self
|
12
13
|
*= require_tree .
|
14
|
+
*= require_self
|
13
15
|
*/
|
@@ -4,8 +4,8 @@
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
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
|
-
<%%= stylesheet_link_tag
|
8
|
-
<%%= javascript_include_tag
|
7
|
+
<%%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
8
|
+
<%%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
9
9
|
<%%= csrf_meta_tags %>
|
10
10
|
</head>
|
11
11
|
<body>
|
@@ -4,8 +4,8 @@
|
|
4
4
|
%meta{:name => "viewport", :content => "width=device-width, initial-scale=1.0"}
|
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
|
-
= stylesheet_link_tag
|
8
|
-
= javascript_include_tag
|
7
|
+
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
8
|
+
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
9
9
|
= csrf_meta_tags
|
10
10
|
%body
|
11
11
|
-# application layout styled for Bootstrap 2.3
|
@@ -5,8 +5,8 @@ html
|
|
5
5
|
title
|
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
|
-
== stylesheet_link_tag "application", :media =>
|
9
|
-
== javascript_include_tag
|
8
|
+
== stylesheet_link_tag "application", :media => 'all', 'data-turbolinks-track' => true
|
9
|
+
== javascript_include_tag 'application', 'data-turbolinks-track' => true
|
10
10
|
== csrf_meta_tags
|
11
11
|
body
|
12
12
|
/ application layout styled for Bootstrap 2.3
|
@@ -4,8 +4,8 @@
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
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
|
-
<%%= stylesheet_link_tag
|
8
|
-
<%%= javascript_include_tag
|
7
|
+
<%%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
8
|
+
<%%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
9
9
|
<%%= csrf_meta_tags %>
|
10
10
|
</head>
|
11
11
|
<body>
|
@@ -4,8 +4,8 @@
|
|
4
4
|
%meta{:name => "viewport", :content => "width=device-width, initial-scale=1.0"}
|
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
|
-
= stylesheet_link_tag
|
8
|
-
= javascript_include_tag
|
7
|
+
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
8
|
+
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
9
9
|
= csrf_meta_tags
|
10
10
|
%body
|
11
11
|
%header
|
@@ -5,8 +5,8 @@ html
|
|
5
5
|
title
|
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
|
-
== stylesheet_link_tag "application", :media =>
|
9
|
-
== javascript_include_tag
|
8
|
+
== stylesheet_link_tag "application", :media => 'all', 'data-turbolinks-track' => true
|
9
|
+
== javascript_include_tag 'application', 'data-turbolinks-track' => true
|
10
10
|
== csrf_meta_tags
|
11
11
|
body
|
12
12
|
header
|
@@ -4,10 +4,10 @@
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
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
|
-
<%%= stylesheet_link_tag
|
7
|
+
<%%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
8
8
|
<%%# Modernizr is required for Zurb Foundation %>
|
9
9
|
<%%= javascript_include_tag "vendor/custom.modernizr" %>
|
10
|
-
<%%= javascript_include_tag
|
10
|
+
<%%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
11
11
|
<%%= csrf_meta_tags %>
|
12
12
|
</head>
|
13
13
|
<body>
|
@@ -4,10 +4,10 @@
|
|
4
4
|
%meta{:name => "viewport", :content => "width=device-width, initial-scale=1.0"}
|
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
|
-
= stylesheet_link_tag
|
7
|
+
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
8
8
|
-# Modernizr is required for Zurb Foundation
|
9
9
|
= javascript_include_tag "vendor/custom.modernizr"
|
10
|
-
= javascript_include_tag
|
10
|
+
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
11
11
|
= csrf_meta_tags
|
12
12
|
%body
|
13
13
|
%header
|
@@ -5,10 +5,10 @@ html
|
|
5
5
|
title
|
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
|
-
== stylesheet_link_tag "application", :media =>
|
8
|
+
== stylesheet_link_tag "application", :media => 'all', 'data-turbolinks-track' => true
|
9
9
|
/ Modernizr is required for Zurb Foundation
|
10
10
|
== javascript_include_tag "vendor/custom.modernizr"
|
11
|
-
== javascript_include_tag
|
11
|
+
== javascript_include_tag 'application', 'data-turbolinks-track' => true
|
12
12
|
== csrf_meta_tags
|
13
13
|
body
|
14
14
|
header
|
@@ -4,10 +4,10 @@
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
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
|
-
<%%= stylesheet_link_tag
|
7
|
+
<%%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
8
8
|
<%%# Modernizr is required for Zurb Foundation %>
|
9
9
|
<%%= javascript_include_tag "vendor/modernizr" %>
|
10
|
-
<%%= javascript_include_tag
|
10
|
+
<%%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
11
11
|
<%%= csrf_meta_tags %>
|
12
12
|
</head>
|
13
13
|
<body>
|
@@ -4,10 +4,10 @@
|
|
4
4
|
%meta{:name => "viewport", :content => "width=device-width, initial-scale=1.0"}
|
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
|
-
= stylesheet_link_tag
|
7
|
+
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
8
8
|
-# Modernizr is required for Zurb Foundation
|
9
9
|
= javascript_include_tag "vendor/modernizr"
|
10
|
-
= javascript_include_tag
|
10
|
+
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
11
11
|
= csrf_meta_tags
|
12
12
|
%body
|
13
13
|
%header
|
@@ -5,10 +5,10 @@ html
|
|
5
5
|
title
|
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
|
-
== stylesheet_link_tag "application", :media =>
|
8
|
+
== stylesheet_link_tag "application", :media => 'all', 'data-turbolinks-track' => true
|
9
9
|
/ Modernizr is required for Zurb Foundation
|
10
10
|
== javascript_include_tag "vendor/modernizr"
|
11
|
-
== javascript_include_tag
|
11
|
+
== javascript_include_tag 'application', 'data-turbolinks-track' => true
|
12
12
|
== csrf_meta_tags
|
13
13
|
body
|
14
14
|
header
|
@@ -2,8 +2,8 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title><%= app_name.underscore.titleize %></title>
|
5
|
-
<%%= stylesheet_link_tag
|
6
|
-
<%%= javascript_include_tag
|
5
|
+
<%%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
6
|
+
<%%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
7
7
|
<%%= csrf_meta_tags %>
|
8
8
|
</head>
|
9
9
|
<body>
|
@@ -2,8 +2,8 @@
|
|
2
2
|
%html
|
3
3
|
%head
|
4
4
|
%title= <%= app_name.underscore.titleize %>
|
5
|
-
= stylesheet_link_tag
|
6
|
-
= javascript_include_tag
|
5
|
+
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
6
|
+
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
7
7
|
= csrf_meta_tags
|
8
8
|
%body
|
9
9
|
= yield
|
@@ -3,8 +3,8 @@ html
|
|
3
3
|
head
|
4
4
|
title
|
5
5
|
= app_name.underscore.titleize
|
6
|
-
== stylesheet_link_tag "application", :media =>
|
7
|
-
== javascript_include_tag
|
6
|
+
== stylesheet_link_tag "application", :media => 'all', 'data-turbolinks-track' => true
|
7
|
+
== javascript_include_tag 'application', 'data-turbolinks-track' => true
|
8
8
|
== csrf_meta_tags
|
9
9
|
body
|
10
10
|
== yield
|
@@ -4,8 +4,8 @@
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
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
|
-
<%%= stylesheet_link_tag
|
8
|
-
<%%= javascript_include_tag
|
7
|
+
<%%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
8
|
+
<%%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
9
9
|
<%%= csrf_meta_tags %>
|
10
10
|
</head>
|
11
11
|
<body>
|
@@ -4,8 +4,8 @@
|
|
4
4
|
%meta{:name => "viewport", :content => "width=device-width, initial-scale=1.0"}
|
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
|
-
= stylesheet_link_tag
|
8
|
-
= javascript_include_tag
|
7
|
+
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
8
|
+
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
9
9
|
= csrf_meta_tags
|
10
10
|
%body
|
11
11
|
%header
|
@@ -5,8 +5,8 @@ html
|
|
5
5
|
title
|
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
|
-
== stylesheet_link_tag "application", :media =>
|
9
|
-
== javascript_include_tag
|
8
|
+
== stylesheet_link_tag "application", :media => 'all', 'data-turbolinks-track' => true
|
9
|
+
== javascript_include_tag 'application', 'data-turbolinks-track' => true
|
10
10
|
== csrf_meta_tags
|
11
11
|
body
|
12
12
|
header
|
data/lib/rails_layout/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_layout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Kehoe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-03-
|
11
|
+
date: 2014-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|