ezy 0.4.1.beta → 0.4.2.beta

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.1.beta
1
+ 0.4.2.beta
data/ezy.gemspec CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  # Release Specific Information
5
- s.version = "0.4.1.beta"
6
- s.date = "2014-04-06"
5
+ s.version = "0.4.2.beta"
6
+ s.date = "2014-07-04"
7
7
 
8
8
  # Gem Details
9
9
  s.name = "ezy"
@@ -30,5 +30,5 @@ Gem::Specification.new do |s|
30
30
  # Gem Bookkeeping
31
31
  s.rubygems_version = %q{2.2.2}
32
32
  s.add_dependency(%q<compass>, [">= 1.0.0.alpha"])
33
- s.add_dependency(%q<sass>, [">= 3.3.4"])
33
+ s.add_dependency(%q<sass>, [">= 3.3.9"])
34
34
  end
data/sass/ezy/_grid.scss CHANGED
@@ -47,10 +47,10 @@ $init-gutter-property: $gutter-property;
47
47
 
48
48
  // ---------------------------------------------------------------------------
49
49
  // @mixin master
50
- //
50
+ //
51
51
  // Sets width on page. If the grid is fluid, it's set as a max-width
52
52
  // Extends the grid master placeholder selector
53
- // $context : Number of columns in the current context.
53
+ // $context : Number of columns in the current context.
54
54
 
55
55
  @mixin master(
56
56
  $context : $total-columns,
@@ -58,7 +58,7 @@ $init-gutter-property: $gutter-property;
58
58
  ) {
59
59
  @if $is-fluid {
60
60
  max-width: layout-width( $context );
61
- @if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
61
+ @if $support-ie6 or $support-ie7 {
62
62
  /* Forcing static grid on IE6 and IE7 */
63
63
  *width: layout-width( $context );
64
64
  }
@@ -77,7 +77,7 @@ $init-gutter-property: $gutter-property;
77
77
 
78
78
  @if $grid-padding-left { padding-left: $grid-padding-left; }
79
79
  @if $grid-padding-right { padding-right: $grid-padding-right; }
80
-
80
+
81
81
  @if ( not $at-breakpoint ) {
82
82
  @extend %ezy-master;
83
83
  }
@@ -93,7 +93,7 @@ $init-gutter-property: $gutter-property;
93
93
 
94
94
  // ---------------------------------------------------------------------------
95
95
  // @mixin container
96
- //
96
+ //
97
97
  // Sets width on page. If the grid is fluid, it's set as a max-width
98
98
  // Extends the grid master placeholder selector
99
99
  // $context : Number of columns in the current context
@@ -127,7 +127,7 @@ $init-gutter-property: $gutter-property;
127
127
 
128
128
  @mixin column-base {
129
129
  float: left;
130
- @if $legacy-support-for-ie6 {
130
+ @if $support-ie6 {
131
131
  /* Fixing double margin on IE6 */
132
132
  _display: inline;
133
133
  }
@@ -139,9 +139,9 @@ $init-gutter-property: $gutter-property;
139
139
 
140
140
  // ---------------------------------------------------------------------------
141
141
  // @mixin grid-init
142
- //
142
+ //
143
143
  // Prints out placeholder selectors used with columns. Helps reduce the CSS output.
144
- //
144
+ //
145
145
  // Should be called after setting grid variables:
146
146
  // ----------------
147
147
  // $column-width
@@ -178,7 +178,7 @@ $init-gutter-property: $gutter-property;
178
178
 
179
179
  // ---------------------------------------------------------------------------
180
180
  // @mixin span-columns
181
- //
181
+ //
182
182
  // Sets width and gutter on columns
183
183
  // Uses @extend for gutters outside media queries if grid-init() has been called
184
184
  // $columns : Number of columns to span
@@ -211,13 +211,13 @@ $init-gutter-property: $gutter-property;
211
211
  @include debug-info( $columns, $context );
212
212
  }
213
213
 
214
- // Setting base column styles when a column can't
214
+ // Setting base column styles when a column can't
215
215
  // have extended the base columns placeholder selector
216
216
  @if ( not $grid-init ) {
217
217
  @include column-base;
218
218
  }
219
219
 
220
- // Some crazy logic to set gutter or
220
+ // Some crazy logic to set gutter or
221
221
  // extend column placeholder selectors
222
222
 
223
223
  @if $grid-init and ( not $at-breakpoint ) {
@@ -230,14 +230,14 @@ $init-gutter-property: $gutter-property;
230
230
  } @else {
231
231
  @extend %ezy-column-#{ $grid-init-index }-#{ $context };
232
232
  }
233
-
233
+
234
234
  } @else {
235
235
  @extend %ezy-column-#{ $grid-init-index };
236
236
  }
237
237
 
238
238
  }
239
239
  @if ( $gutter-property and $gutter-property != $init-gutter-property )
240
- or ( not $grid-init )
240
+ or ( not $grid-init )
241
241
  or $at-breakpoint {
242
242
 
243
243
  @if $is-fluid and $context {
@@ -247,7 +247,7 @@ $init-gutter-property: $gutter-property;
247
247
  @warn $context-warn;
248
248
  } @else {
249
249
  @include gutters( $gutter-property: $gutter-property );
250
- }
250
+ }
251
251
 
252
252
  }
253
253
  }
@@ -7,10 +7,10 @@ $debug : false !default;
7
7
  // Cross-browser support configuration
8
8
  // Using same naming convension as Compass
9
9
 
10
- $legacy-support-for-ie : true !default;
11
- $legacy-support-for-ie6 : $legacy-support-for-ie !default;
12
- $legacy-support-for-ie7 : $legacy-support-for-ie !default;
13
- $legacy-support-for-ie8 : $legacy-support-for-ie !default;
10
+ $support-ie : false !default;
11
+ $support-ie6 : $support-ie !default;
12
+ $support-ie7 : $support-ie !default;
13
+ $support-ie8 : $support-ie !default;
14
14
 
15
15
  // ---------------------------------------------------------------------------
16
16
  // Selector used for legacy support in media queries
metadata CHANGED
@@ -1,50 +1,63 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: ezy
3
- version: !ruby/object:Gem::Version
4
- version: 0.4.1.beta
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: true
5
+ segments:
6
+ - 0
7
+ - 4
8
+ - 2
9
+ - beta
10
+ version: 0.4.2.beta
5
11
  platform: ruby
6
- authors:
12
+ authors:
7
13
  - Frej Raahede Nielsen
8
14
  autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
- date: 2014-04-06 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
17
+
18
+ date: 2014-07-04 00:00:00 +02:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
14
22
  name: compass
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: 1.0.0.alpha
20
- type: :runtime
21
23
  prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
24
27
  - - ">="
25
- - !ruby/object:Gem::Version
28
+ - !ruby/object:Gem::Version
29
+ segments:
30
+ - 1
31
+ - 0
32
+ - 0
33
+ - alpha
26
34
  version: 1.0.0.alpha
27
- - !ruby/object:Gem::Dependency
28
- name: sass
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: 3.3.4
34
35
  type: :runtime
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: sass
35
39
  prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
38
43
  - - ">="
39
- - !ruby/object:Gem::Version
40
- version: 3.3.4
41
- description: A collection of SCSS tools for creating responsive websites. Includes
42
- a simple but powerful grid framework, media query helpers and sprite helpers.
44
+ - !ruby/object:Gem::Version
45
+ segments:
46
+ - 3
47
+ - 3
48
+ - 9
49
+ version: 3.3.9
50
+ type: :runtime
51
+ version_requirements: *id002
52
+ description: A collection of SCSS tools for creating responsive websites. Includes a simple but powerful grid framework, media query helpers and sprite helpers.
43
53
  email: frejraahede@gmail.com
44
54
  executables: []
55
+
45
56
  extensions: []
57
+
46
58
  extra_rdoc_files: []
47
- files:
59
+
60
+ files:
48
61
  - README.md
49
62
  - ezy.gemspec
50
63
  - VERSION
@@ -163,28 +176,39 @@ files:
163
176
  - test/img/test-spacing@2x/alien.png
164
177
  - test/img/test-spacing@2x/classic.png
165
178
  - test/img/test-spacing@2x/indy.png
179
+ has_rdoc: true
166
180
  homepage: http://raahede.github.io/ezy/
167
- licenses:
181
+ licenses:
168
182
  - MIT
169
- metadata: {}
170
183
  post_install_message:
171
184
  rdoc_options: []
172
- require_paths:
185
+
186
+ require_paths:
173
187
  - lib
174
- required_ruby_version: !ruby/object:Gem::Requirement
175
- requirements:
188
+ required_ruby_version: !ruby/object:Gem::Requirement
189
+ none: false
190
+ requirements:
176
191
  - - ">="
177
- - !ruby/object:Gem::Version
178
- version: '0'
179
- required_rubygems_version: !ruby/object:Gem::Requirement
180
- requirements:
192
+ - !ruby/object:Gem::Version
193
+ segments:
194
+ - 0
195
+ version: "0"
196
+ required_rubygems_version: !ruby/object:Gem::Requirement
197
+ none: false
198
+ requirements:
181
199
  - - ">"
182
- - !ruby/object:Gem::Version
200
+ - !ruby/object:Gem::Version
201
+ segments:
202
+ - 1
203
+ - 3
204
+ - 1
183
205
  version: 1.3.1
184
206
  requirements: []
207
+
185
208
  rubyforge_project:
186
- rubygems_version: 2.1.11
209
+ rubygems_version: 1.3.7.1
187
210
  signing_key:
188
- specification_version: 4
211
+ specification_version: 3
189
212
  summary: The developer's toolbox for responsive websites
190
213
  test_files: []
214
+
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 12578b01aac5f8329a3990c2aef658565e1734c7
4
- data.tar.gz: ed2eebc31838f99ed8fa8bb32165942fd5aa4656
5
- SHA512:
6
- metadata.gz: 7efa546d5f986bb5a72fab47a30c33632514130ed9b97a65bbbc6e4ea600225dc7f3cfff814aa5070a528acf964a244f9631c6edeb7b3a5406971f23ae122b96
7
- data.tar.gz: 4f4735e50702c60372434c80664e1bc174ed2d5c8662db6929a3d69f4723576a890c2f2f77ddebb1ff34d82a3ef806f0dded460006920609f22fbbfbe0424498