rails_layout 0.2.2 → 0.3.0

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: ef225d4dc76d79b76ccbcaf2676017d3acb38cc0
4
- data.tar.gz: a4cb31b952d03401e1f9ff604d2a856f28da81e6
3
+ metadata.gz: f8eaeb22659d66ae199abbc7eeb77e85c445f005
4
+ data.tar.gz: bf7444e215e3f0d928dec000b4be94beb4816422
5
5
  SHA512:
6
- metadata.gz: 2641ac9352797a3ec0f6a56c8b718a6a0bb21e0593132b1d0015ef3b638bc413a94272e2fa8c1c2af59b7a6e7f2bb8403f6ec4b49326043958ec012d17e3b895
7
- data.tar.gz: 11eaaa71b6767c671c8817f8c3e5831d78d36bd406c642ba165a592ff4f7a8b0067b31f3c83173dee54b0fa96e181a96cfd553f3b8b56497cdc38c89f6504ec5
6
+ metadata.gz: 6d1f8936240bdf2a99009c9157a14c8e3fe7814d27439d0f54918ca958783cfadc0b0d19d3ea7ca128ee8aeb164577f39e32e1f0eb914c2572f4550dd557b0ff
7
+ data.tar.gz: 8ad9db94a74ec5819e7fb64b7693f2f894f32c683cbb485784fafbf28e74b672a270a695252aa93d6906b25b9bdb943197a764c66b7f912097127b82f9c9830f
data/CHANGELOG.textile CHANGED
@@ -1,55 +1,59 @@
1
1
  h1. CHANGELOG
2
2
 
3
- h2. 0.2.2 November 2, 2013
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
- h2. 0.2.1 November 2, 2013
11
+ h3. 0.2.1 November 2, 2013
8
12
 
9
13
  * no turbolinks when used with Rails 3.2
10
14
 
11
- h2. 0.2.0 October 31, 2013
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
- h2. 0.1.9 October 20, 2013
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
- h2. 0.1.8 October 19, 2013
23
+ h3. 0.1.8 October 19, 2013
20
24
 
21
25
  * fix navigation
22
26
  * fix Foundation messages partial
23
27
 
24
- h2. 0.1.7 October 13, 2013
28
+ h3. 0.1.7 October 13, 2013
25
29
 
26
30
  * support for Haml markup
27
31
 
28
- h2. 0.1.6 October 13, 2013
32
+ h3. 0.1.6 October 13, 2013
29
33
 
30
34
  * support for Zurb Foundation 4.0
31
35
 
32
- h2. 0.1.5 October 12, 2013
36
+ h3. 0.1.5 October 12, 2013
33
37
 
34
38
  * support for Twitter Bootstrap 3.0
35
39
 
36
- h2. 0.1.4 September 20, 2013
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
- h2. 0.1.3 September 20, 2013
44
+ h3. 0.1.3 September 20, 2013
41
45
 
42
46
  * add missing escape sequence to ERB delimiters
43
47
 
44
- h2. 0.1.2 September 20, 2013
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
- h2. 0.1.1 September 19, 2013
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
- h2. 0.1.0 September 19, 2013
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/bootstrap_and_overrides.css.scss'
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/bootstrap_and_overrides.css.scss'
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/foundation_and_overrides.css.scss'
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'
@@ -1,3 +1,3 @@
1
1
  module RailsLayout
2
- VERSION = "0.2.2"
2
+ VERSION = "0.3.0"
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: 0.2.2
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-03 00:00:00.000000000 Z
11
+ date: 2013-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler