rails_layout 1.0.39 → 1.0.40
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 +4 -4
- data/CHANGELOG.textile +4 -1
- data/lib/generators/layout/install/install_generator.rb +1 -1
- data/lib/rails_layout/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3da64b3da6de145da36a4d6a8314ae2b9943b797
|
|
4
|
+
data.tar.gz: f327327af97e917ce4f69bb206cfeef1cced00f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5b36a1bad999cc093f03a9f56f1f4ed4f6d761edd76c844b46957c2c0dbe501caf888499b4255a75070b7ea650536b59b9a783e0936d4ec1541f2b9b387b3a7
|
|
7
|
+
data.tar.gz: 0f264f73f9a8deedacbb839628ffe7e0d96ac571712cb7ad764c92ba98b4cfa1efb006ed44af4afb6e69f575b694d95567df3b4e33958736a1a2a5595b0d9f4c
|
data/CHANGELOG.textile
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
h1. CHANGELOG
|
|
2
2
|
|
|
3
|
+
h3. 1.0.40 May 10, 2017
|
|
4
|
+
|
|
5
|
+
* match precisely Rails 5.0 to use 'jquery_ujs'
|
|
6
|
+
|
|
3
7
|
h3. 1.0.39 May 10, 2017
|
|
4
8
|
|
|
5
9
|
* Rails 5.1 uses 'rails-ujs' but earlier versions need 'jquery_ujs'
|
|
@@ -7,7 +11,6 @@ h3. 1.0.39 May 10, 2017
|
|
|
7
11
|
h3. 1.0.38 May 10, 2017
|
|
8
12
|
|
|
9
13
|
* jQuery is required for Bootstrap or Foundation
|
|
10
|
-
* Rails 5.1 uses 'rails-ujs' but earlier versions need 'jquery_ujs'
|
|
11
14
|
|
|
12
15
|
h3. 1.0.37 May 7, 2017
|
|
13
16
|
|
|
@@ -63,7 +63,7 @@ module Layout
|
|
|
63
63
|
if Rails::VERSION::MAJOR == 4
|
|
64
64
|
gsub_file 'app/assets/javascripts/application.js', /\/\/= require rails-ujs/, '//= require jquery_ujs'
|
|
65
65
|
end
|
|
66
|
-
if Rails::VERSION::MAJOR == 5 && Rails::VERSION::MINOR
|
|
66
|
+
if Rails::VERSION::MAJOR == 5 && Rails::VERSION::MINOR == 0
|
|
67
67
|
gsub_file 'app/assets/javascripts/application.js', /\/\/= require rails-ujs/, '//= require jquery_ujs'
|
|
68
68
|
end
|
|
69
69
|
end
|
data/lib/rails_layout/version.rb
CHANGED