compass_sumo 0.4.3 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a5f808ceb38b65dcc2aabefea2a0765de9c6beda
4
- data.tar.gz: e2a7e4fb0e39f9506ced201a7e7d3fcbbd2e2313
3
+ metadata.gz: 7b2a119ca2d04ef7426e10d71f657bdee52099cc
4
+ data.tar.gz: 6e2571b87688db383058e6a78473189f0f497475
5
5
  SHA512:
6
- metadata.gz: 614d405926a6678fbd2dc00915d31d9612f7e9117e90806a1c71324b3f75fec3ebebb9311556d86639f6736e81b4ba61ed8023acc9a382542e8f704a04f6acaf
7
- data.tar.gz: 66ecd20fe1cf46ad9edee22506edabe9245faf9d245f79304b124e4b6dc14cc8ccabbb36286f48a9b16375436b7573d61d6837bb499e2c109a57980b60f1ce8c
6
+ metadata.gz: ccc3c45c51c310d28218d8d4f2815a4850e9d58b98bdfa39fa67c1fce14839150716f8e11925c67fd281abdbbd6de2ce28e9b544dfd332c983bb2f1c916e9ce7
7
+ data.tar.gz: 8036d80b4c273567c9e165e7ec6ec24e2a336e718edcaf5f38308d33af86256586e458a537f601c73db18fb9be910adf3c07c6cdab2776e621b1c7e40dc2465b
data/compass_sumo.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
8
8
  s.name = 'compass_sumo'
9
9
  s.summary = "SumoCoders CSS Framework"
10
10
  s.description = "The SumoCoders CSS Framework"
11
- s.authors = ["Jan De Poorter", "Niels De Paepe", "Mathias Helin"]
11
+ s.authors = ["Jan De Poorter", "Niels De Paepe", "Mathias Helin", "Lisette Mazure"]
12
12
  s.email = "compass@sumocoders.be"
13
13
 
14
14
  s.files = `git ls-files`.split("\n")
@@ -1,3 +1,3 @@
1
1
  module CompassSumo
2
- VERSION = "0.4.3"
2
+ VERSION = "0.4.4"
3
3
  end
@@ -1 +1 @@
1
- @import 'compass_sumo/mixins'
1
+ @import 'compass_sumo/mixins';
@@ -2,3 +2,6 @@
2
2
  @import 'compass_sumo/mixins/fallbacks';
3
3
  @import 'compass_sumo/mixins/load_font';
4
4
  @import 'compass_sumo/mixins/retina_sprites';
5
+ @import 'compass_sumo/mixins/clearfix';
6
+ @import 'compass_sumo/mixins/font-size';
7
+ @import 'compass_sumo/mixins/line-height';
@@ -0,0 +1,12 @@
1
+ // Mixin to provide full clearfix
2
+ @mixin full-clearfix {
3
+ *zoom: 1;
4
+ &:before,
5
+ &:after {
6
+ content: "";
7
+ display: table;
8
+ }
9
+ &:after {
10
+ clear: both;
11
+ }
12
+ }
@@ -0,0 +1,6 @@
1
+ // Mixin to set font size to rem with pixel fallback
2
+ // Note: Can be used when body font-size is set to 10px (62.5%)
3
+ @mixin font-size($font-size) {
4
+ font-size: $font-size + px;
5
+ font-size: ($font-size / 10) + rem;
6
+ }
@@ -0,0 +1,6 @@
1
+ // Mixin to set line-height to rem with pixel fallback
2
+ // (same use as font-size mixin)
3
+ @mixin line-height($line-height) {
4
+ line-height: $line-height + px;
5
+ line-height: ($line-height / 10) + rem;
6
+ }
metadata CHANGED
@@ -1,43 +1,44 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass_sumo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan De Poorter
8
8
  - Niels De Paepe
9
9
  - Mathias Helin
10
+ - Lisette Mazure
10
11
  autorequire:
11
12
  bindir: bin
12
13
  cert_chain: []
13
- date: 2014-03-05 00:00:00.000000000 Z
14
+ date: 2014-06-12 00:00:00.000000000 Z
14
15
  dependencies:
15
16
  - !ruby/object:Gem::Dependency
16
17
  name: compass
17
18
  requirement: !ruby/object:Gem::Requirement
18
19
  requirements:
19
- - - '>='
20
+ - - ">="
20
21
  - !ruby/object:Gem::Version
21
22
  version: '0'
22
23
  type: :runtime
23
24
  prerelease: false
24
25
  version_requirements: !ruby/object:Gem::Requirement
25
26
  requirements:
26
- - - '>='
27
+ - - ">="
27
28
  - !ruby/object:Gem::Version
28
29
  version: '0'
29
30
  - !ruby/object:Gem::Dependency
30
31
  name: ttfunk
31
32
  requirement: !ruby/object:Gem::Requirement
32
33
  requirements:
33
- - - '>='
34
+ - - ">="
34
35
  - !ruby/object:Gem::Version
35
36
  version: '0'
36
37
  type: :runtime
37
38
  prerelease: false
38
39
  version_requirements: !ruby/object:Gem::Requirement
39
40
  requirements:
40
- - - '>='
41
+ - - ">="
41
42
  - !ruby/object:Gem::Version
42
43
  version: '0'
43
44
  description: The SumoCoders CSS Framework
@@ -60,7 +61,10 @@ files:
60
61
  - stylesheets/_compass_sumo.scss
61
62
  - stylesheets/compass_sumo/_mixins.scss
62
63
  - stylesheets/compass_sumo/mixins/_animations.scss
64
+ - stylesheets/compass_sumo/mixins/_clearfix.scss
63
65
  - stylesheets/compass_sumo/mixins/_fallbacks.scss
66
+ - stylesheets/compass_sumo/mixins/_font-size.scss
67
+ - stylesheets/compass_sumo/mixins/_line-height.scss
64
68
  - stylesheets/compass_sumo/mixins/_load_font.scss
65
69
  - stylesheets/compass_sumo/mixins/_retina_sprites.scss
66
70
  homepage:
@@ -72,17 +76,17 @@ require_paths:
72
76
  - lib
73
77
  required_ruby_version: !ruby/object:Gem::Requirement
74
78
  requirements:
75
- - - '>='
79
+ - - ">="
76
80
  - !ruby/object:Gem::Version
77
81
  version: '0'
78
82
  required_rubygems_version: !ruby/object:Gem::Requirement
79
83
  requirements:
80
- - - '>='
84
+ - - ">="
81
85
  - !ruby/object:Gem::Version
82
86
  version: '0'
83
87
  requirements: []
84
88
  rubyforge_project:
85
- rubygems_version: 2.0.14
89
+ rubygems_version: 2.2.2
86
90
  signing_key:
87
91
  specification_version: 4
88
92
  summary: SumoCoders CSS Framework