rails_layout 0.5.6 → 0.5.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.textile +8 -3
- data/README.textile +21 -11
- data/lib/generators/layout/USAGE +2 -2
- data/lib/generators/layout/templates/bootstrap2-application.html.erb +1 -1
- data/lib/generators/layout/templates/bootstrap2-application.html.haml +1 -1
- data/lib/generators/layout/templates/bootstrap2-application.html.slim +22 -0
- data/lib/generators/layout/templates/bootstrap2-messages.html.erb +1 -1
- data/lib/generators/layout/templates/bootstrap2-messages.html.haml +1 -1
- data/lib/generators/layout/templates/bootstrap2-messages.html.slim +7 -0
- data/lib/generators/layout/templates/bootstrap2-navigation.html.erb +1 -1
- data/lib/generators/layout/templates/bootstrap2-navigation.html.haml +1 -1
- data/lib/generators/layout/templates/bootstrap2-navigation.html.slim +16 -0
- data/lib/generators/layout/templates/bootstrap3-application.html.slim +16 -0
- data/lib/generators/layout/templates/bootstrap3-messages.html.erb +1 -1
- data/lib/generators/layout/templates/bootstrap3-messages.html.haml +1 -1
- data/lib/generators/layout/templates/bootstrap3-messages.html.slim +6 -0
- data/lib/generators/layout/templates/bootstrap3-navigation.html.erb +1 -1
- data/lib/generators/layout/templates/bootstrap3-navigation.html.haml +1 -1
- data/lib/generators/layout/templates/bootstrap3-navigation.html.slim +13 -0
- data/lib/generators/layout/templates/foundation4-application.html.slim +18 -0
- data/lib/generators/layout/templates/foundation4-messages.html.slim +7 -0
- data/lib/generators/layout/templates/foundation4-navigation.html.slim +11 -0
- data/lib/generators/layout/templates/foundation5-application.html.slim +20 -0
- data/lib/generators/layout/templates/foundation5-messages.html.slim +7 -0
- data/lib/generators/layout/templates/foundation5-navigation.html.slim +11 -0
- data/lib/generators/layout/templates/navigation_links.html.slim +1 -0
- data/lib/generators/layout/templates/none-application.html.slim +10 -0
- data/lib/generators/layout/templates/simple-application.html.slim +16 -0
- data/lib/generators/layout/templates/simple-messages.html.slim +3 -0
- data/lib/generators/layout/templates/simple-navigation.html.slim +4 -0
- data/lib/rails_layout/version.rb +1 -1
- data/rails_layout.gemspec +1 -1
- metadata +22 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e06e3fe9d5d9d363a177913886e0ff652f9899ad
|
4
|
+
data.tar.gz: a0893c3edeb60f1a19c58cd48e02efe5f7816a6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dffa2f15b906234daa51120a99248e2ebc450908dc4516ad0a7fccd6a6e2d795a25ccbb7b9faa574c31bbfb4cf42b06f596e90a5945f322322fbcee7c1f3bf05
|
7
|
+
data.tar.gz: 80f0d4898c0c9e3128bca01e7cd6fcc0ecd045b37a11bad1b60a8869a819d1e7b585a818b7af04289f05d53ca567ab7080ee4e2b51b0eb7eec4fb6ba6c478602
|
data/CHANGELOG.textile
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
h1. CHANGELOG
|
2
2
|
|
3
|
+
h3. 0.5.7 December 15, 2013
|
4
|
+
|
5
|
+
* add Slim templates (contributed by benedictleejh)
|
6
|
+
* change all references from 'Twitter Bootstrap' to 'Bootstrap'
|
7
|
+
|
3
8
|
h3. 0.5.6 November 23, 2013
|
4
9
|
|
5
10
|
* minor tweak for Zurb Foundation
|
@@ -31,7 +36,7 @@ h3. 0.5.0 November 11, 2013
|
|
31
36
|
h3. 0.4.2 November 9, 2013
|
32
37
|
|
33
38
|
* move 'Home' link to conform to framework examples
|
34
|
-
* add responsive navbar for
|
39
|
+
* add responsive navbar for Bootstrap 2.3
|
35
40
|
|
36
41
|
h3. 0.4.1 November 9, 2013
|
37
42
|
|
@@ -76,7 +81,7 @@ h3. 0.1.6 October 13, 2013
|
|
76
81
|
|
77
82
|
h3. 0.1.5 October 12, 2013
|
78
83
|
|
79
|
-
* support for
|
84
|
+
* support for Bootstrap 3.0
|
80
85
|
|
81
86
|
h3. 0.1.4 September 20, 2013
|
82
87
|
|
@@ -97,4 +102,4 @@ h3. 0.1.1 September 19, 2013
|
|
97
102
|
|
98
103
|
h3. 0.1.0 September 19, 2013
|
99
104
|
|
100
|
-
* support for
|
105
|
+
* support for Bootstrap 2.3
|
data/README.textile
CHANGED
@@ -4,8 +4,8 @@ RailsLayout is a utility gem to use during development.
|
|
4
4
|
|
5
5
|
Use it to set up your choice of front-end framework:
|
6
6
|
|
7
|
-
*
|
8
|
-
*
|
7
|
+
* Bootstrap 2.3
|
8
|
+
* Bootstrap 3.0
|
9
9
|
* Zurb Foundation 4.0
|
10
10
|
* Zurb Foundation 5.0
|
11
11
|
|
@@ -35,8 +35,8 @@ h4. Supported Frameworks
|
|
35
35
|
You can generate layout files suitable for use with the following front-end frameworks:
|
36
36
|
|
37
37
|
* @simple@ - simple layout
|
38
|
-
* @bootstrap2@ -
|
39
|
-
* @bootstrap3@ -
|
38
|
+
* @bootstrap2@ - Bootstrap 2.3
|
39
|
+
* @bootstrap3@ - Bootstrap 3.0
|
40
40
|
* @foundation4@ - Zurb Foundation 4.0
|
41
41
|
* @foundation5@ - Zurb Foundation 5.0
|
42
42
|
* @none@ - removes all changes
|
@@ -81,19 +81,27 @@ Look at the "Learn Rails":https://github.com/RailsApps/learn-rails example appli
|
|
81
81
|
|
82
82
|
!http://railsapps.github.io/images/learn-rails-cover-130x161.jpg(Learn Ruby on Rails)!:http://learn-rails.com/learn-ruby-on-rails.html
|
83
83
|
|
84
|
+
h4. Documentation
|
85
|
+
|
86
|
+
See these articles for information about how to set up the application layout:
|
87
|
+
|
88
|
+
* "*Rails Application Layout*":http://railsapps.github.io/rails-default-application-layout.html
|
89
|
+
* "*Rails and Bootstrap*":http://railsapps.github.io/twitter-bootstrap-rails.html
|
90
|
+
* "*Rails and Foundation*":http://railsapps.github.io/rails-foundation.html
|
91
|
+
|
84
92
|
h2. Installing a Front-End Framework
|
85
93
|
|
86
|
-
Instead of following the "instructions for
|
94
|
+
Instead of following the "instructions for Bootstrap":http://railsapps.github.io/twitter-bootstrap-rails.html or "Zurb Foundation":http://foundation.zurb.com/docs/rails.html to install a front-end framework, add the gems you need. Then use the RailsLayout gem. It will set up your assets files.
|
87
95
|
|
88
96
|
Add the gems you need to your Rails application Gemfile:
|
89
97
|
|
90
|
-
h4.
|
98
|
+
h4. Bootstrap 2.3
|
91
99
|
|
92
100
|
<pre>
|
93
101
|
gem 'bootstrap-sass', '~> 2.3.2.2'
|
94
102
|
</pre>
|
95
103
|
|
96
|
-
h4.
|
104
|
+
h4. Bootstrap 3.0
|
97
105
|
|
98
106
|
<pre>
|
99
107
|
gem 'bootstrap-sass'
|
@@ -180,9 +188,9 @@ The RailsLayout gem will create the file:
|
|
180
188
|
|
181
189
|
* "app/assets/stylesheets/application.css.scss":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/templates/application.css.scss
|
182
190
|
|
183
|
-
h3.
|
191
|
+
h3. Bootstrap 2.3 Layout
|
184
192
|
|
185
|
-
To create layout files for use with
|
193
|
+
To create layout files for use with Bootstrap 2.3:
|
186
194
|
|
187
195
|
<pre>
|
188
196
|
$ rails generate layout bootstrap2
|
@@ -208,9 +216,9 @@ and modify the file:
|
|
208
216
|
|
209
217
|
* "app/assets/javascripts/application.js":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/templates/bootstrap-application.js
|
210
218
|
|
211
|
-
h3.
|
219
|
+
h3. Bootstrap 3.0 Layout
|
212
220
|
|
213
|
-
To create layout files for use with
|
221
|
+
To create layout files for use with Bootstrap 3.0:
|
214
222
|
|
215
223
|
<pre>
|
216
224
|
$ rails generate layout bootstrap3
|
@@ -383,3 +391,5 @@ h2. MIT License
|
|
383
391
|
"MIT License":http://www.opensource.org/licenses/mit-license
|
384
392
|
|
385
393
|
Copyright © 2013 Daniel Kehoe
|
394
|
+
|
395
|
+
!https://cruel-carlota.pagodabox.com/b096716fb733287d5c3d5eec65aaa26b(githalytics.com alpha)!
|
data/lib/generators/layout/USAGE
CHANGED
@@ -4,10 +4,10 @@ Description:
|
|
4
4
|
Create simple layout files when no front-end framework is used:
|
5
5
|
rails generate layout simple
|
6
6
|
|
7
|
-
Create layout files suitable for
|
7
|
+
Create layout files suitable for Bootstrap 2.3:
|
8
8
|
rails generate layout bootstrap2
|
9
9
|
|
10
|
-
Create layout files suitable for
|
10
|
+
Create layout files suitable for Bootstrap 3.0:
|
11
11
|
rails generate layout bootstrap3
|
12
12
|
|
13
13
|
Create layout files suitable for Zurb Foundation 4.0:
|
@@ -8,7 +8,7 @@
|
|
8
8
|
= javascript_include_tag "application", "data-turbolinks-track" => true
|
9
9
|
= csrf_meta_tags
|
10
10
|
%body
|
11
|
-
-# application layout styled for
|
11
|
+
-# application layout styled for Bootstrap 2.3
|
12
12
|
%header
|
13
13
|
= render 'layouts/navigation'
|
14
14
|
%main{:role => "main"}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
doctype html
|
2
|
+
html
|
3
|
+
head
|
4
|
+
meta[name="viewport" content="width=device-width, initial-scale=1.0"]
|
5
|
+
title
|
6
|
+
= content_for?(:title) ? yield(:title) : app_name.underscore.titleize
|
7
|
+
meta name="description" content="#{content_for?(:description) ? yield(:description) : app_name.underscore.titleize}"
|
8
|
+
== stylesheet_link_tag "application", :media => "all", "data-turbolinks-track" => true
|
9
|
+
== javascript_include_tag "application", "data-turbolinks-track" => true
|
10
|
+
== csrf_meta_tags
|
11
|
+
body
|
12
|
+
/ application layout styled for Bootstrap 2.3
|
13
|
+
header
|
14
|
+
== render 'layouts/navigation'
|
15
|
+
main[role="main"]
|
16
|
+
.container
|
17
|
+
.content
|
18
|
+
.row
|
19
|
+
.span12
|
20
|
+
== render 'layouts/messages'
|
21
|
+
== yield
|
22
|
+
footer
|
@@ -0,0 +1,16 @@
|
|
1
|
+
/ navigation styled for Bootstrap 2.3
|
2
|
+
.navbar
|
3
|
+
.navbar-inner
|
4
|
+
.container
|
5
|
+
a.btn.btn-navbar[data-toggle="collapse" data-target=".nav-collapse"]
|
6
|
+
span.icon-bar
|
7
|
+
span.icon-bar
|
8
|
+
span.icon-bar
|
9
|
+
.nav-collapse.collapse
|
10
|
+
.navbar.navbar-fixed-top
|
11
|
+
nav.navbar-inner
|
12
|
+
ul.nav
|
13
|
+
li
|
14
|
+
= link_to 'Home', root_path
|
15
|
+
li
|
16
|
+
== render 'layouts/navigation_links'
|
@@ -0,0 +1,16 @@
|
|
1
|
+
doctype
|
2
|
+
html
|
3
|
+
head
|
4
|
+
meta[name="viewport" content="width=device-width, initial-scale=1.0"]
|
5
|
+
title
|
6
|
+
= content_for?(:title) ? yield(:title) : app_name.underscore.titleize
|
7
|
+
meta name="description" content="#{content_for?(:description) ? yield(:description) : app_name.underscore.titleize}"
|
8
|
+
== stylesheet_link_tag "application", :media => "all", "data-turbolinks-track" => true
|
9
|
+
== javascript_include_tag "application", "data-turbolinks-track" => true
|
10
|
+
== csrf_meta_tags
|
11
|
+
body
|
12
|
+
header
|
13
|
+
== render 'layouts/navigation'
|
14
|
+
main[role="main"]
|
15
|
+
== render 'layouts/messages'
|
16
|
+
== yield
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/ Rails flash messages styled for Bootstrap 3.0
|
2
|
+
- flash.each do |name, msg|
|
3
|
+
- if msg.is_a?(String)
|
4
|
+
div class="alert alert-#{name == :notice ? "success" : "danger"}"
|
5
|
+
button.close[type="button" data-dismiss="alert" aria-hidden="true"] ×
|
6
|
+
= content_tag :div, msg, :id => "flash_#{name}"
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/ navigation styled for Bootstrap 3.0
|
2
|
+
nav.navbar.navbar-inverse.navbar-fixed-top
|
3
|
+
.container
|
4
|
+
.navbar-header
|
5
|
+
button.navbar-toggle[type="button" data-toggle="collapse" data-target=".navbar-collapse"]
|
6
|
+
span.sr-only Toggle navigation
|
7
|
+
span.icon-bar
|
8
|
+
span.icon-bar
|
9
|
+
span.icon-bar
|
10
|
+
= link_to 'Home', root_path, class: 'navbar-brand'
|
11
|
+
.collapse.navbar-collapse
|
12
|
+
ul.nav.navbar-nav
|
13
|
+
== render 'layouts/navigation_links'
|
@@ -0,0 +1,18 @@
|
|
1
|
+
doctype
|
2
|
+
html
|
3
|
+
head
|
4
|
+
meta[name="viewport" content="width=device-width, initial-scale=1.0"]
|
5
|
+
title
|
6
|
+
= content_for?(:title) ? yield(:title) : app_name.underscore.titleize
|
7
|
+
meta name="description" content="#{content_for?(:description) ? yield(:description) : app_name.underscore.titleize}"
|
8
|
+
== stylesheet_link_tag "application", :media => "all", "data-turbolinks-track" => true
|
9
|
+
/ Modernizr is required for Zurb Foundation
|
10
|
+
== javascript_include_tag "vendor/custom.modernizr"
|
11
|
+
== javascript_include_tag "application", "data-turbolinks-track" => true
|
12
|
+
== csrf_meta_tags
|
13
|
+
body
|
14
|
+
header
|
15
|
+
== render 'layouts/navigation'
|
16
|
+
main[role="main"]
|
17
|
+
== render 'layouts/messages'
|
18
|
+
== yield
|
@@ -0,0 +1,20 @@
|
|
1
|
+
doctype html
|
2
|
+
html
|
3
|
+
head
|
4
|
+
meta[name="viewport" content="width=device-width, initial-scale=1.0"]
|
5
|
+
title
|
6
|
+
= content_for?(:title) ? yield(:title) : "#{app_name.underscore.titleize}"
|
7
|
+
meta name="description" content="#{content_for?(:description) ? yield(:description) : app_name.underscore.titleize}"
|
8
|
+
= stylesheet_link_tag "application"
|
9
|
+
/ Foundation 5 won't work with Rails Turbolinks
|
10
|
+
/ Modernizr is required for Zurb Foundation
|
11
|
+
== javascript_include_tag "vendor/modernizr"
|
12
|
+
== csrf_meta_tags
|
13
|
+
body
|
14
|
+
header
|
15
|
+
== render 'layouts/navigation'
|
16
|
+
main[role="main"]
|
17
|
+
== render 'layouts/messages'
|
18
|
+
== yield
|
19
|
+
/ Foundation 5 won't work when application.js is included in HEAD
|
20
|
+
== javascript_include_tag "application"
|
@@ -0,0 +1 @@
|
|
1
|
+
/ add navigation links to this file
|
@@ -0,0 +1,10 @@
|
|
1
|
+
doctype html
|
2
|
+
html
|
3
|
+
head
|
4
|
+
title
|
5
|
+
= app_name.underscore.titleize
|
6
|
+
== stylesheet_link_tag "application", :media => "all", "data-turbolinks-track" => true
|
7
|
+
== javascript_include_tag "application", "data-turbolinks-track" => true
|
8
|
+
== csrf_meta_tags
|
9
|
+
body
|
10
|
+
== yield
|
@@ -0,0 +1,16 @@
|
|
1
|
+
doctype html
|
2
|
+
html
|
3
|
+
head
|
4
|
+
meta[name="viewport" content="width=device-width, initial-scale=1.0"]
|
5
|
+
title
|
6
|
+
= content_for?(:title) ? yield(:title) : app_name.underscore.titleize
|
7
|
+
meta name="description" content="#{content_for?(:description) ? yield(:description) : app_name.underscore.titleize}"
|
8
|
+
== stylesheet_link_tag "application", :media => "all", "data-turbolinks-track" => true
|
9
|
+
== javascript_include_tag "application", "data-turbolinks-track" => true
|
10
|
+
== csrf_meta_tags
|
11
|
+
body
|
12
|
+
header
|
13
|
+
== render 'layouts/navigation'
|
14
|
+
main[role="main"]
|
15
|
+
== render 'layouts/messages'
|
16
|
+
== yield
|
data/lib/rails_layout/version.rb
CHANGED
data/rails_layout.gemspec
CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Daniel Kehoe"]
|
10
10
|
spec.email = ["daniel@danielkehoe.com"]
|
11
11
|
spec.description = %q{Generates Rails application layout files for use with various front-end frameworks.}
|
12
|
-
spec.summary = %q{Rails generator creates application layout files for
|
12
|
+
spec.summary = %q{Rails generator creates application layout files for Bootstrap and other frameworks.}
|
13
13
|
spec.homepage = "http://github.com/RailsApps/rails_layout/"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
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: 0.5.
|
4
|
+
version: 0.5.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Kehoe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -60,43 +60,60 @@ files:
|
|
60
60
|
- lib/generators/layout/templates/bootstrap-application.js
|
61
61
|
- lib/generators/layout/templates/bootstrap2-application.html.erb
|
62
62
|
- lib/generators/layout/templates/bootstrap2-application.html.haml
|
63
|
+
- lib/generators/layout/templates/bootstrap2-application.html.slim
|
63
64
|
- lib/generators/layout/templates/bootstrap2-messages.html.erb
|
64
65
|
- lib/generators/layout/templates/bootstrap2-messages.html.haml
|
66
|
+
- lib/generators/layout/templates/bootstrap2-messages.html.slim
|
65
67
|
- lib/generators/layout/templates/bootstrap2-navigation.html.erb
|
66
68
|
- lib/generators/layout/templates/bootstrap2-navigation.html.haml
|
69
|
+
- lib/generators/layout/templates/bootstrap2-navigation.html.slim
|
67
70
|
- lib/generators/layout/templates/bootstrap2_and_overrides.css.scss
|
68
71
|
- lib/generators/layout/templates/bootstrap3-application.html.erb
|
69
72
|
- lib/generators/layout/templates/bootstrap3-application.html.haml
|
73
|
+
- lib/generators/layout/templates/bootstrap3-application.html.slim
|
70
74
|
- lib/generators/layout/templates/bootstrap3-messages.html.erb
|
71
75
|
- lib/generators/layout/templates/bootstrap3-messages.html.haml
|
76
|
+
- lib/generators/layout/templates/bootstrap3-messages.html.slim
|
72
77
|
- lib/generators/layout/templates/bootstrap3-navigation.html.erb
|
73
78
|
- lib/generators/layout/templates/bootstrap3-navigation.html.haml
|
79
|
+
- lib/generators/layout/templates/bootstrap3-navigation.html.slim
|
74
80
|
- lib/generators/layout/templates/bootstrap3_and_overrides.css.scss
|
75
81
|
- lib/generators/layout/templates/foundation4-application.html.erb
|
76
82
|
- lib/generators/layout/templates/foundation4-application.html.haml
|
83
|
+
- lib/generators/layout/templates/foundation4-application.html.slim
|
77
84
|
- lib/generators/layout/templates/foundation4-application.js
|
78
85
|
- lib/generators/layout/templates/foundation4-messages.html.erb
|
79
86
|
- lib/generators/layout/templates/foundation4-messages.html.haml
|
87
|
+
- lib/generators/layout/templates/foundation4-messages.html.slim
|
80
88
|
- lib/generators/layout/templates/foundation4-navigation.html.erb
|
81
89
|
- lib/generators/layout/templates/foundation4-navigation.html.haml
|
90
|
+
- lib/generators/layout/templates/foundation4-navigation.html.slim
|
82
91
|
- lib/generators/layout/templates/foundation4_and_overrides.css.scss
|
83
92
|
- lib/generators/layout/templates/foundation5-application.html.erb
|
84
93
|
- lib/generators/layout/templates/foundation5-application.html.haml
|
94
|
+
- lib/generators/layout/templates/foundation5-application.html.slim
|
85
95
|
- lib/generators/layout/templates/foundation5-application.js
|
86
96
|
- lib/generators/layout/templates/foundation5-messages.html.erb
|
87
97
|
- lib/generators/layout/templates/foundation5-messages.html.haml
|
98
|
+
- lib/generators/layout/templates/foundation5-messages.html.slim
|
88
99
|
- lib/generators/layout/templates/foundation5-navigation.html.erb
|
89
100
|
- lib/generators/layout/templates/foundation5-navigation.html.haml
|
101
|
+
- lib/generators/layout/templates/foundation5-navigation.html.slim
|
90
102
|
- lib/generators/layout/templates/foundation5_and_overrides.css.scss
|
91
103
|
- lib/generators/layout/templates/navigation_links.html.erb
|
104
|
+
- lib/generators/layout/templates/navigation_links.html.slim
|
92
105
|
- lib/generators/layout/templates/none-application.html.erb
|
93
106
|
- lib/generators/layout/templates/none-application.html.haml
|
107
|
+
- lib/generators/layout/templates/none-application.html.slim
|
94
108
|
- lib/generators/layout/templates/simple-application.html.erb
|
95
109
|
- lib/generators/layout/templates/simple-application.html.haml
|
110
|
+
- lib/generators/layout/templates/simple-application.html.slim
|
96
111
|
- lib/generators/layout/templates/simple-messages.html.erb
|
97
112
|
- lib/generators/layout/templates/simple-messages.html.haml
|
113
|
+
- lib/generators/layout/templates/simple-messages.html.slim
|
98
114
|
- lib/generators/layout/templates/simple-navigation.html.erb
|
99
115
|
- lib/generators/layout/templates/simple-navigation.html.haml
|
116
|
+
- lib/generators/layout/templates/simple-navigation.html.slim
|
100
117
|
- lib/generators/layout/templates/simple.css
|
101
118
|
- lib/generators/navigation/navigation_generator.rb
|
102
119
|
- lib/generators/navigation/templates/navigation_links.html.erb
|
@@ -123,9 +140,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
140
|
version: '0'
|
124
141
|
requirements: []
|
125
142
|
rubyforge_project:
|
126
|
-
rubygems_version: 2.1.
|
143
|
+
rubygems_version: 2.1.11
|
127
144
|
signing_key:
|
128
145
|
specification_version: 4
|
129
|
-
summary: Rails generator creates application layout files for
|
130
|
-
|
146
|
+
summary: Rails generator creates application layout files for Bootstrap and other
|
147
|
+
frameworks.
|
131
148
|
test_files: []
|