smock 0.1.11 → 0.1.12

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.
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- smock (0.1.11)
5
- sass (~> 3.2)
4
+ smock (0.1.12)
5
+ sass (= 3.2.19)
6
6
 
7
7
  GEM
8
8
  remote: http://rubygems.org/
@@ -10,11 +10,11 @@ GEM
10
10
  bourbon (3.2.3)
11
11
  sass (~> 3.2)
12
12
  thor
13
- neat (1.6.0)
13
+ neat (1.5.1)
14
14
  bourbon (>= 3.1)
15
- sass (>= 3.3)
15
+ sass (~> 3.2.19)
16
16
  rake (10.3.2)
17
- sass (3.4.3)
17
+ sass (3.2.19)
18
18
  thor (0.19.1)
19
19
 
20
20
  PLATFORMS
@@ -183,5 +183,4 @@
183
183
  display: block
184
184
  text-transform: uppercase
185
185
  font-weight: bold
186
- font-style: italic
187
-
186
+ font-style: italic
@@ -1,4 +1,4 @@
1
- // Bourbon Neat 1.6.0.pre
1
+ // Bourbon Neat 1.5.1
2
2
  // MIT Licensed
3
3
  // Copyright (c) 2012-2013 thoughtbot, inc.
4
4
 
@@ -9,7 +9,7 @@
9
9
  }
10
10
 
11
11
  @if not belongs-to($query, $visual-grid-breakpoints) {
12
- $visual-grid-breakpoints: append($visual-grid-breakpoints, $query, comma) !global;
12
+ $visual-grid-breakpoints: append($visual-grid-breakpoints, $query, comma);
13
13
  }
14
14
 
15
15
  @return $query;
@@ -45,7 +45,7 @@
45
45
  }
46
46
 
47
47
  @function container-shift($shift: $shift) {
48
- $parent-columns: $grid-columns !global !default;
48
+ $parent-columns: $grid-columns !default;
49
49
 
50
50
  @if length($shift) == 3 {
51
51
  $container-columns: nth($shift, 3);
@@ -2,9 +2,9 @@
2
2
  @if length($query) == 1 {
3
3
  @media screen and ($default-feature: nth($query, 1)) {
4
4
  $default-grid-columns: $grid-columns;
5
- $grid-columns: $total-columns !global;
5
+ $grid-columns: $total-columns;
6
6
  @content;
7
- $grid-columns: $default-grid-columns !global;
7
+ $grid-columns: $default-grid-columns;
8
8
  }
9
9
  }
10
10
 
@@ -12,10 +12,10 @@
12
12
  $loopTo: length($query);
13
13
  $mediaQuery: 'screen and ';
14
14
  $default-grid-columns: $grid-columns;
15
- $grid-columns: $total-columns !global;
15
+ $grid-columns: $total-columns;
16
16
 
17
17
  @if length($query) % 2 != 0 {
18
- $grid-columns: nth($query, $loopTo) !global;
18
+ $grid-columns: nth($query, $loopTo);
19
19
  $loopTo: $loopTo - 1;
20
20
  }
21
21
 
@@ -32,7 +32,7 @@
32
32
 
33
33
  @media #{$mediaQuery} {
34
34
  @content;
35
- $grid-columns: $default-grid-columns !global;
35
+ $grid-columns: $default-grid-columns;
36
36
  }
37
37
  }
38
38
  }
@@ -22,9 +22,9 @@ $layout-direction: nil !default;
22
22
 
23
23
  @function get-parent-columns($columns) {
24
24
  @if $columns != $grid-columns {
25
- $parent-columns: $columns !global;
25
+ $parent-columns: $columns;
26
26
  } @else {
27
- $parent-columns: $grid-columns !global;
27
+ $parent-columns: $grid-columns;
28
28
  }
29
29
 
30
30
  @return $parent-columns;
@@ -1,9 +1,9 @@
1
1
  @mixin reset-display {
2
- $container-display-table: false !global;
2
+ $container-display-table: false;
3
3
  }
4
4
 
5
5
  @mixin reset-layout-direction {
6
- $layout-direction: $default-layout-direction !global;
6
+ $layout-direction: $default-layout-direction;
7
7
  }
8
8
 
9
9
  @mixin reset-all {
@@ -1,17 +1,17 @@
1
1
  @mixin row($display: block, $direction: $default-layout-direction) {
2
2
  @include clearfix;
3
- $layout-direction: $direction !global;
3
+ $layout-direction: $direction;
4
4
 
5
5
  @if $display == table {
6
6
  display: table;
7
7
  @include fill-parent;
8
8
  table-layout: fixed;
9
- $container-display-table: true !global;
9
+ $container-display-table: true;
10
10
  }
11
11
 
12
12
  @else {
13
13
  display: block;
14
- $container-display-table: false !global;
14
+ $container-display-table: false;
15
15
  }
16
16
  }
17
17
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  @mixin shift-in-context($shift: $columns of $container-columns) {
6
6
  $n-columns: nth($shift, 1);
7
- $parent-columns: container-shift($shift) !global;
7
+ $parent-columns: container-shift($shift);
8
8
 
9
9
  $direction: get-direction($layout-direction, $default-layout-direction);
10
10
  $opposite-direction: get-opposite-direction($direction);
@@ -12,5 +12,5 @@
12
12
  margin-#{$opposite-direction}: $n-columns * flex-grid(1, $parent-columns) + $n-columns * flex-gutter($parent-columns);
13
13
 
14
14
  // Reset nesting context
15
- $parent-columns: $grid-columns !global;
15
+ $parent-columns: $grid-columns;
16
16
  }
@@ -3,7 +3,7 @@
3
3
  $container-columns: container-span($span);
4
4
 
5
5
  // Set nesting context (used by shift())
6
- $parent-columns: get-parent-columns($container-columns) !global;
6
+ $parent-columns: get-parent-columns($container-columns);
7
7
 
8
8
  $direction: get-direction($layout-direction, $default-layout-direction);
9
9
  $opposite-direction: get-opposite-direction($direction);
data/smock.gemspec CHANGED
@@ -22,7 +22,7 @@ This gem provides the basic styles and files for use in an application that need
22
22
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
23
23
  s.require_paths = ["lib"]
24
24
 
25
- s.add_dependency('sass', '~> 3.2')
25
+ s.add_dependency('sass', '3.2.19')
26
26
 
27
27
  s.add_development_dependency('bourbon', '~> 3.2')
28
28
  s.add_development_dependency('neat', '~> 1.5')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smock
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.12
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -16,17 +16,17 @@ dependencies:
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - ~>
19
+ - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: '3.2'
21
+ version: 3.2.19
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - ~>
27
+ - - '='
28
28
  - !ruby/object:Gem::Version
29
- version: '3.2'
29
+ version: 3.2.19
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: bourbon
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -255,7 +255,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
255
255
  version: '0'
256
256
  segments:
257
257
  - 0
258
- hash: 4097981660171200960
258
+ hash: -1798098903746668087
259
259
  required_rubygems_version: !ruby/object:Gem::Requirement
260
260
  none: false
261
261
  requirements:
@@ -264,7 +264,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
264
264
  version: '0'
265
265
  segments:
266
266
  - 0
267
- hash: 4097981660171200960
267
+ hash: -1798098903746668087
268
268
  requirements: []
269
269
  rubyforge_project: smock
270
270
  rubygems_version: 1.8.21