rails_layout 0.1.2 → 0.1.3

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: 963c2d2f10231aafe49191bc8218d2eef172f1f8
4
- data.tar.gz: fc4808319380719333b28a365c3827c85224df1e
3
+ metadata.gz: a3572c15e87d22809ef5f571161aadde139f87c8
4
+ data.tar.gz: a8ce6ba2a503fd9428121c2b29714a45af32cc00
5
5
  SHA512:
6
- metadata.gz: 0e6cdbdb1f19d671725e57f2d85143db0c0f6cf4d097b913be5bee75ac8f2f2d9d5300513068ac16cadd00112a53bbff82d20a7252f43323ce0aff0842095c1c
7
- data.tar.gz: 7db9b26002f844f284a47315dcac9535ead97c5250164c485dde858647a459c62a454b35d9c68e50b213e078546c1d2e3a46d55ef89782aae06ed857f2aed195
6
+ metadata.gz: cbca34f6ecd9797d6b8ef76cf451290cd77949270f6260b1f68d2fef3fee604157b189c97fc8b7952de2b260e00408ad02eaac7b300a7fb0c76ebbfbeeb8f628
7
+ data.tar.gz: 56c7566b3f41ed0bdaa637ecbba31689cf9b2edda9031c02d9cf5abf6e2d4c5c4ce7cbe4913c7023e1e02c5027627ca3dd29814c110eae25444ac2f707eebc07
data/CHANGELOG.textile CHANGED
@@ -1,5 +1,9 @@
1
1
  h1. CHANGELOG
2
2
 
3
+ h2. 0.1.3 September 20, 2013
4
+
5
+ * add missing escape sequence to ERB delimiters
6
+
3
7
  h2. 0.1.2 September 20, 2013
4
8
 
5
9
  * add simple layout files
@@ -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 "application", media: "all", "data-turbolinks-track" => true %>
8
- <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
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>
@@ -2,20 +2,20 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
- <title><%= content_for?(:title) ? yield(:title) : "<%= app_name.underscore.titleize %>" %></title>
6
- <meta name="description" content="<%= content_for?(:description) ? yield(:description) : "<%= app_name.underscore.titleize %>" %>">
7
- <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
8
- <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
9
- <%= csrf_meta_tags %>
5
+ <title><%%= content_for?(:title) ? yield(:title) : "<%= app_name.underscore.titleize %>" %></title>
6
+ <meta name="description" content="<%%= content_for?(:description) ? yield(:description) : "<%= app_name.underscore.titleize %>" %>">
7
+ <%%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
8
+ <%%= javascript_include_tag "application", "data-turbolinks-track" => true %>
9
+ <%%= csrf_meta_tags %>
10
10
  </head>
11
11
  <body>
12
12
  <div id="container">
13
13
  <header>
14
- <%= render 'layouts/navigation' %>
15
- <%= render 'layouts/messages' %>
14
+ <%%= render 'layouts/navigation' %>
15
+ <%%= render 'layouts/messages' %>
16
16
  </header>
17
17
  <main role="main">
18
- <%= yield %>
18
+ <%%= yield %>
19
19
  </main>
20
20
  <footer>
21
21
  </footer>
@@ -1,3 +1,3 @@
1
1
  module RailsLayout
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
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: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Kehoe