rails_layout 0.2.2 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.textile +17 -13
- data/lib/generators/layout/layout_generator.rb +5 -3
- data/lib/rails_layout/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8eaeb22659d66ae199abbc7eeb77e85c445f005
|
4
|
+
data.tar.gz: bf7444e215e3f0d928dec000b4be94beb4816422
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d1f8936240bdf2a99009c9157a14c8e3fe7814d27439d0f54918ca958783cfadc0b0d19d3ea7ca128ee8aeb164577f39e32e1f0eb914c2572f4550dd557b0ff
|
7
|
+
data.tar.gz: 8ad9db94a74ec5819e7fb64b7693f2f894f32c683cbb485784fafbf28e74b672a270a695252aa93d6906b25b9bdb943197a764c66b7f912097127b82f9c9830f
|
data/CHANGELOG.textile
CHANGED
@@ -1,55 +1,59 @@
|
|
1
1
|
h1. CHANGELOG
|
2
2
|
|
3
|
-
|
3
|
+
h3. 0.3.0 November 9, 2013
|
4
|
+
|
5
|
+
* create a file 'framework_and_overrides' instead of 'bootstrap_and_overrides' or 'foundation_and_overrides'
|
6
|
+
|
7
|
+
h3. 0.2.2 November 2, 2013
|
4
8
|
|
5
9
|
* remove 'container' div from Bootstrap 3 application layout (issue #1)
|
6
10
|
|
7
|
-
|
11
|
+
h3. 0.2.1 November 2, 2013
|
8
12
|
|
9
13
|
* no turbolinks when used with Rails 3.2
|
10
14
|
|
11
|
-
|
15
|
+
h3. 0.2.0 October 31, 2013
|
12
16
|
|
13
17
|
* installs a framework by setting up files in the assets folder
|
14
18
|
|
15
|
-
|
19
|
+
h3. 0.1.9 October 20, 2013
|
16
20
|
|
17
21
|
* use class instead of id for simple CSS flash messages
|
18
22
|
|
19
|
-
|
23
|
+
h3. 0.1.8 October 19, 2013
|
20
24
|
|
21
25
|
* fix navigation
|
22
26
|
* fix Foundation messages partial
|
23
27
|
|
24
|
-
|
28
|
+
h3. 0.1.7 October 13, 2013
|
25
29
|
|
26
30
|
* support for Haml markup
|
27
31
|
|
28
|
-
|
32
|
+
h3. 0.1.6 October 13, 2013
|
29
33
|
|
30
34
|
* support for Zurb Foundation 4.0
|
31
35
|
|
32
|
-
|
36
|
+
h3. 0.1.5 October 12, 2013
|
33
37
|
|
34
38
|
* support for Twitter Bootstrap 3.0
|
35
39
|
|
36
|
-
|
40
|
+
h3. 0.1.4 September 20, 2013
|
37
41
|
|
38
42
|
* add simple stylesheet if there is no front-end framework
|
39
43
|
|
40
|
-
|
44
|
+
h3. 0.1.3 September 20, 2013
|
41
45
|
|
42
46
|
* add missing escape sequence to ERB delimiters
|
43
47
|
|
44
|
-
|
48
|
+
h3. 0.1.2 September 20, 2013
|
45
49
|
|
46
50
|
* add simple layout files
|
47
51
|
* add missing turbolinks attributes
|
48
52
|
|
49
|
-
|
53
|
+
h3. 0.1.1 September 19, 2013
|
50
54
|
|
51
55
|
* add navigation links for 'About' or 'Contact' if view files exist in expected locations
|
52
56
|
|
53
|
-
|
57
|
+
h3. 0.1.0 September 19, 2013
|
54
58
|
|
55
59
|
* support for Twitter Bootstrap 2.3
|
@@ -18,23 +18,25 @@ module Layout
|
|
18
18
|
remove_file 'app/assets/stylesheets/simple.css'
|
19
19
|
remove_file 'app/assets/stylesheets/bootstrap_and_overrides.css.scss'
|
20
20
|
remove_file 'app/assets/stylesheets/foundation_and_overrides.css.scss'
|
21
|
+
remove_file 'app/assets/stylesheets/framework_and_overrides.css.scss'
|
21
22
|
when 'simple'
|
22
23
|
copy_file 'simple.css', 'app/assets/stylesheets/simple.css'
|
23
24
|
copy_file 'application.js', 'app/assets/javascripts/application.js'
|
24
25
|
remove_file 'app/assets/stylesheets/bootstrap_and_overrides.css.scss'
|
25
26
|
remove_file 'app/assets/stylesheets/foundation_and_overrides.css.scss'
|
27
|
+
remove_file 'app/assets/stylesheets/framework_and_overrides.css.scss'
|
26
28
|
when 'bootstrap2'
|
27
|
-
copy_file 'bootstrap2_and_overrides.css.scss', 'app/assets/stylesheets/
|
29
|
+
copy_file 'bootstrap2_and_overrides.css.scss', 'app/assets/stylesheets/framework_and_overrides.css.scss'
|
28
30
|
copy_file 'bootstrap-application.js', 'app/assets/javascripts/application.js'
|
29
31
|
remove_file 'app/assets/stylesheets/simple.css'
|
30
32
|
remove_file 'app/assets/stylesheets/foundation_and_overrides.css.scss'
|
31
33
|
when 'bootstrap3'
|
32
|
-
copy_file 'bootstrap3_and_overrides.css.scss', 'app/assets/stylesheets/
|
34
|
+
copy_file 'bootstrap3_and_overrides.css.scss', 'app/assets/stylesheets/framework_and_overrides.css.scss'
|
33
35
|
copy_file 'bootstrap-application.js', 'app/assets/javascripts/application.js'
|
34
36
|
remove_file 'app/assets/stylesheets/simple.css'
|
35
37
|
remove_file 'app/assets/stylesheets/foundation_and_overrides.css.scss'
|
36
38
|
when 'foundation4'
|
37
|
-
copy_file 'foundation_and_overrides.css.scss', 'app/assets/stylesheets/
|
39
|
+
copy_file 'foundation_and_overrides.css.scss', 'app/assets/stylesheets/framework_and_overrides.css.scss'
|
38
40
|
copy_file 'foundation4-application.js', 'app/assets/javascripts/application.js'
|
39
41
|
remove_file 'app/assets/stylesheets/simple.css'
|
40
42
|
remove_file 'app/assets/stylesheets/bootstrap_and_overrides.css.scss'
|
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: 0.
|
4
|
+
version: 0.3.0
|
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-
|
11
|
+
date: 2013-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|