rails_layout 1.0.20 → 1.0.21
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc284256a4b3dc3c5bc8a293b9ce926a3be6885a
|
|
4
|
+
data.tar.gz: e1e55b0ea3dcacd9c999f1b9408ba03fde3dff78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b8a866ec0832e8249179cbce6c02d9289af991862fa4e1f5af26bcee01089efc0f11f161283ff167ae8f33ab131bdd20b6f906004d12077a649223a7aeb6c21
|
|
7
|
+
data.tar.gz: 5417629f250039bc4be6533ca718167f4e717de57a2a1fb5dd012bf4221cf1c90f487cad826cd028da096d7aa510001e349faa5407d55b29034a880fe4a1eb37
|
data/CHANGELOG.textile
CHANGED
data/README.textile
CHANGED
|
@@ -2,8 +2,8 @@ h1. !http://railsapps.github.io/images/rails-36x36.jpg(RailsLayout Gem)! RailsLa
|
|
|
2
2
|
|
|
3
3
|
Use this gem to set up layout files for your choice of front-end framework:
|
|
4
4
|
|
|
5
|
-
* Zurb Foundation 5.
|
|
6
|
-
* Bootstrap 3.
|
|
5
|
+
* Zurb Foundation 5.3
|
|
6
|
+
* Bootstrap 3.2
|
|
7
7
|
|
|
8
8
|
It also will set up "Devise":https://github.com/plataformatec/devise views with styling for Bootstrap or Foundation.
|
|
9
9
|
|
|
@@ -52,7 +52,7 @@ In summary, to install a front-end framework, add the gems you need. Then use th
|
|
|
52
52
|
|
|
53
53
|
Add the gems you need to your Rails application Gemfile:
|
|
54
54
|
|
|
55
|
-
h4. Zurb Foundation 5.
|
|
55
|
+
h4. Zurb Foundation 5.3
|
|
56
56
|
|
|
57
57
|
<pre>
|
|
58
58
|
gem 'foundation-rails'
|
|
@@ -67,7 +67,7 @@ gem 'compass-rails'
|
|
|
67
67
|
gem 'zurb-foundation'
|
|
68
68
|
</pre>
|
|
69
69
|
|
|
70
|
-
h4. Bootstrap 3.
|
|
70
|
+
h4. Bootstrap 3.2
|
|
71
71
|
|
|
72
72
|
<pre>
|
|
73
73
|
gem 'bootstrap-sass'
|
|
@@ -138,9 +138,9 @@ h4. Supported Frameworks
|
|
|
138
138
|
|
|
139
139
|
You can generate layout files suitable for use with the following front-end frameworks:
|
|
140
140
|
|
|
141
|
-
* @foundation5@ - Zurb Foundation 5.
|
|
141
|
+
* @foundation5@ - Zurb Foundation 5.3
|
|
142
142
|
* @foundation4@ - Zurb Foundation 4.0
|
|
143
|
-
* @bootstrap3@ - Bootstrap 3.
|
|
143
|
+
* @bootstrap3@ - Bootstrap 3.2
|
|
144
144
|
* @bootstrap2@ - Bootstrap 2.3
|
|
145
145
|
* @simple@ - simple layout
|
|
146
146
|
* @none@ - removes all changes
|
|
@@ -187,9 +187,9 @@ Look at the "Learn Rails":https://github.com/RailsApps/learn-rails example appli
|
|
|
187
187
|
|
|
188
188
|
!http://railsapps.github.io/images/learn-rails-cover-130x161.jpg(Learn Ruby on Rails)!:http://learn-rails.com/learn-ruby-on-rails.html
|
|
189
189
|
|
|
190
|
-
h3. Zurb Foundation 5.
|
|
190
|
+
h3. Zurb Foundation 5.3 Layout
|
|
191
191
|
|
|
192
|
-
To create layout files for use with Zurb Foundation 5.
|
|
192
|
+
To create layout files for use with Zurb Foundation 5.3:
|
|
193
193
|
|
|
194
194
|
<pre>
|
|
195
195
|
$ rails generate layout:install foundation5
|
|
@@ -262,9 +262,9 @@ and modify the file:
|
|
|
262
262
|
|
|
263
263
|
* "app/assets/javascripts/application.js":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/foundation4-application.js
|
|
264
264
|
|
|
265
|
-
h3. Bootstrap 3.
|
|
265
|
+
h3. Bootstrap 3.2 Layout
|
|
266
266
|
|
|
267
|
-
To create layout files for use with Bootstrap 3.
|
|
267
|
+
To create layout files for use with Bootstrap 3.2:
|
|
268
268
|
|
|
269
269
|
<pre>
|
|
270
270
|
$ rails generate layout:install bootstrap3
|
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.21
|
|
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-
|
|
11
|
+
date: 2014-08-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -147,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
147
147
|
version: '0'
|
|
148
148
|
requirements: []
|
|
149
149
|
rubyforge_project:
|
|
150
|
-
rubygems_version: 2.
|
|
150
|
+
rubygems_version: 2.4.1
|
|
151
151
|
signing_key:
|
|
152
152
|
specification_version: 4
|
|
153
153
|
summary: Rails generator creates application layout files for Bootstrap and other
|