rails_layout 1.0.12 → 1.0.13

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: d27064b78672b3443e77540a3d1188efe6850bfd
4
- data.tar.gz: cfca12b189819c4eb29e75a2ee93b481b6e7ce47
3
+ metadata.gz: 23cb3b2bca1250247c5826353b5bf73edca21936
4
+ data.tar.gz: 2ecc76534e2316935d2df67c6d5efc5cea7391f1
5
5
  SHA512:
6
- metadata.gz: ccdf6c7168e18bf8f0f09cc9e0c04405d2fb2cd0fbb427112dce141f1ce2c26afb866fd5eddb2bfb62366ddf029b62c5cdf4d3e3691bb6c1b9f79e01eeb18de8
7
- data.tar.gz: 4a84b392fb74fed5ded63aebff044d26ef6b439ff8cc726b40c6b82e6d7b1693e3b985c2c4b94c09a8b8b2acf64f8c5b05c0a6af42d14499b070311e3610e4cc
6
+ metadata.gz: 679b3d28ad1cdc729d989e8254d4c1b9d6703ed7d2b64e83d951300479f715d91f5f1917984821c6b449c1738e55df1d358d7d494bc43fa3574f4f727a974092
7
+ data.tar.gz: b32cc7ff17aaa0f3f6c8096faa25eaa05175d2ad1a1ec50c707dd4bb0e88a49fe8d71c822fffd9e020ec1ff6d972cdce28cb2803089c2221731df984839552be
data/CHANGELOG.textile CHANGED
@@ -1,5 +1,9 @@
1
1
  h1. CHANGELOG
2
2
 
3
+ h3. 1.0.13 March 23, 2014
4
+
5
+ * change quote marks around 'vendor/modernizr'
6
+
3
7
  h3. 1.0.12 March 23, 2014
4
8
 
5
9
  * Rails 4.1.0 changes the application.css file
@@ -6,7 +6,7 @@
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
8
  <%%# Modernizr is required for Zurb Foundation %>
9
- <%%= javascript_include_tag "vendor/modernizr" %>
9
+ <%%= javascript_include_tag 'vendor/modernizr' %>
10
10
  <%%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
11
11
  <%%= csrf_meta_tags %>
12
12
  </head>
@@ -6,7 +6,7 @@
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
8
  -# Modernizr is required for Zurb Foundation
9
- = javascript_include_tag "vendor/modernizr"
9
+ = javascript_include_tag 'vendor/modernizr'
10
10
  = javascript_include_tag 'application', 'data-turbolinks-track' => true
11
11
  = csrf_meta_tags
12
12
  %body
@@ -7,7 +7,7 @@ html
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
9
  / Modernizr is required for Zurb Foundation
10
- == javascript_include_tag "vendor/modernizr"
10
+ == javascript_include_tag 'vendor/modernizr'
11
11
  == javascript_include_tag 'application', 'data-turbolinks-track' => true
12
12
  == csrf_meta_tags
13
13
  body
@@ -1,3 +1,3 @@
1
1
  module RailsLayout
2
- VERSION = "1.0.12"
2
+ VERSION = "1.0.13"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_layout
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.12
4
+ version: 1.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Kehoe