rails_layout 1.0.41 → 1.0.42
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.textile +7 -0
- data/lib/generators/layout/install/install_generator.rb +1 -1
- data/lib/generators/layout/install/templates/bootstrap4-application.js +18 -0
- data/lib/generators/layout/install/templates/bootstrap4-forms.css.scss +1 -1
- data/lib/rails_layout/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70e37bf494d53f0a5bc9ff5ca51c94adf0fef73b
|
4
|
+
data.tar.gz: bf304a5c5f3cd5173a97c6ec4c23e6c1b08c6175
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eae63b1ab40e68e764837dc610610e7e83a439c53ae62072e512e53ec0648b9f9d8cd0af7fd7e112f91e385d77ce3ac63ce38bcb2254049237d528580453897f
|
7
|
+
data.tar.gz: 95bb39e4abcd457d9a0b93b9d2efc912718adc06584ea5c8ccd6f02ea4a645ac5510832a848442a39e4779b92affd46034e44d7510b56d00f3ef321192d24f9a
|
data/CHANGELOG.textile
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
h1. CHANGELOG
|
2
2
|
|
3
|
+
|
4
|
+
h3. 1.0.42 February 9, 2018
|
5
|
+
|
6
|
+
* Bootstrap 4 was released Jan 18, 2018
|
7
|
+
* change @extend .bg-faded; to @extend .bg-light; for Bootstrap 4 forms (fix https://github.com/RailsApps/rails-composer/issues/273)
|
8
|
+
* specify 'popper' and 'jquery3' in Bootstrap 4 *application.js* file
|
9
|
+
|
3
10
|
h3. 1.0.41 May 17, 2017
|
4
11
|
|
5
12
|
* update from Bootstrap 4 alpha 4 to 6
|
@@ -39,7 +39,7 @@ module Layout
|
|
39
39
|
remove_file 'app/assets/stylesheets/foundation_and_overrides.css.scss'
|
40
40
|
when 'bootstrap4'
|
41
41
|
copy_file 'bootstrap4_and_overrides.css.scss', 'app/assets/stylesheets/1st_load_framework.css.scss'
|
42
|
-
copy_file '
|
42
|
+
copy_file 'bootstrap4-application.js', 'app/assets/javascripts/application.js'
|
43
43
|
remove_file 'app/assets/stylesheets/simple.css'
|
44
44
|
remove_file 'app/assets/stylesheets/foundation_and_overrides.css.scss'
|
45
45
|
when 'foundation4'
|
@@ -0,0 +1,18 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's
|
5
|
+
// vendor/assets/javascripts directory can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// compiled file. JavaScript code in this file should be added after the last require_* statement.
|
9
|
+
//
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require jquery3
|
14
|
+
//= require popper
|
15
|
+
//= require rails-ujs
|
16
|
+
//= require turbolinks
|
17
|
+
//= require bootstrap-sprockets
|
18
|
+
//= require_tree .
|
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.42
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Kehoe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -88,6 +88,7 @@ files:
|
|
88
88
|
- lib/generators/layout/install/templates/bootstrap4-application.html.erb
|
89
89
|
- lib/generators/layout/install/templates/bootstrap4-application.html.haml
|
90
90
|
- lib/generators/layout/install/templates/bootstrap4-application.html.slim
|
91
|
+
- lib/generators/layout/install/templates/bootstrap4-application.js
|
91
92
|
- lib/generators/layout/install/templates/bootstrap4-forms.css.scss
|
92
93
|
- lib/generators/layout/install/templates/bootstrap4-messages.html.erb
|
93
94
|
- lib/generators/layout/install/templates/bootstrap4-messages.html.haml
|