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: e64744c20d753039c9cd6f7f4f265c03ee873da5
4
- data.tar.gz: 5412d21ea097dbef9823a7f2949819526fcaee95
3
+ metadata.gz: fc284256a4b3dc3c5bc8a293b9ce926a3be6885a
4
+ data.tar.gz: e1e55b0ea3dcacd9c999f1b9408ba03fde3dff78
5
5
  SHA512:
6
- metadata.gz: 6360f95afec10ef1c440ee43f0b8fdc74ba175985a725500d5c81a17e1e0aa172fa3f5fb76c518b977e6459412b56c3be9d9945a2162787eb8e735a936e86820
7
- data.tar.gz: da6cfbef17d88dfb3ebe8dfed8a65b4a45dfdd2bff705360df1795e11b9c439f426e93b5ceff1b093abbbcc1857d7400b8357c2b2dad5788fb2f6473e3ae89da
6
+ metadata.gz: 4b8a866ec0832e8249179cbce6c02d9289af991862fa4e1f5af26bcee01089efc0f11f161283ff167ae8f33ab131bdd20b6f906004d12077a649223a7aeb6c21
7
+ data.tar.gz: 5417629f250039bc4be6533ca718167f4e717de57a2a1fb5dd012bf4221cf1c90f487cad826cd028da096d7aa510001e349faa5407d55b29034a880fe4a1eb37
data/CHANGELOG.textile CHANGED
@@ -1,5 +1,9 @@
1
1
  h1. CHANGELOG
2
2
 
3
+ h3. 1.0.21 August 12, 2014
4
+
5
+ * bootstrap-sass v3.2.0 changes
6
+
3
7
  h3. 1.0.20 June 19, 2014
4
8
 
5
9
  * generate admin links when OmniAuth is used with Pundit
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.0
6
- * Bootstrap 3.0
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.0
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.0
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.0
141
+ * @foundation5@ - Zurb Foundation 5.3
142
142
  * @foundation4@ - Zurb Foundation 4.0
143
- * @bootstrap3@ - Bootstrap 3.0
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.0 Layout
190
+ h3. Zurb Foundation 5.3 Layout
191
191
 
192
- To create layout files for use with Zurb Foundation 5.0:
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.0 Layout
265
+ h3. Bootstrap 3.2 Layout
266
266
 
267
- To create layout files for use with Bootstrap 3.0:
267
+ To create layout files for use with Bootstrap 3.2:
268
268
 
269
269
  <pre>
270
270
  $ rails generate layout:install bootstrap3
@@ -13,5 +13,5 @@
13
13
  //= require jquery
14
14
  //= require jquery_ujs
15
15
  //= require turbolinks
16
- //= require bootstrap
16
+ //= require bootstrap-sprockets
17
17
  //= require_tree .
@@ -1,4 +1,5 @@
1
1
  // import the CSS framework
2
+ @import "bootstrap-sprockets";
2
3
  @import "bootstrap";
3
4
 
4
5
  // make all images responsive by default
@@ -1,3 +1,3 @@
1
1
  module RailsLayout
2
- VERSION = "1.0.20"
2
+ VERSION = "1.0.21"
3
3
  end
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.20
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-06-20 00:00:00.000000000 Z
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.2.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