flint-gs 2.0.9 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/lib/flint/version.rb +1 -1
  3. data/stylesheets/flint/functions/helpers/_helpers.scss +14 -0
  4. data/stylesheets/flint/mixins/lib/_main.scss +39 -26
  5. data/tests/bootcamp/CHANGELOG.md +70 -0
  6. data/tests/bootcamp/CONTRIBUTING.md +72 -0
  7. data/tests/bootcamp/Gruntfile.coffee +34 -0
  8. data/tests/bootcamp/LICENSE.md +7 -0
  9. data/tests/bootcamp/README.md +52 -0
  10. data/tests/bootcamp/bower.json +15 -0
  11. data/tests/bootcamp/{_bootcamp.scss → dist/_bootcamp.scss} +0 -0
  12. data/tests/bootcamp/{bootcamp.coffee → dist/bootcamp.coffee} +0 -0
  13. data/tests/bootcamp/{core → dist/core}/functions/_actual.scss +0 -0
  14. data/tests/bootcamp/{core → dist/core}/functions/_error.scss +0 -0
  15. data/tests/bootcamp/{core → dist/core}/functions/_expect.scss +0 -0
  16. data/tests/bootcamp/{core → dist/core}/functions/_not-to.scss +0 -0
  17. data/tests/bootcamp/{core → dist/core}/functions/_should.scss +0 -0
  18. data/tests/bootcamp/{core → dist/core}/functions/_to.scss +0 -0
  19. data/tests/bootcamp/{core → dist/core}/mixins/_describe.scss +0 -0
  20. data/tests/bootcamp/{core → dist/core}/mixins/_it.scss +0 -0
  21. data/tests/bootcamp/{core → dist/core}/mixins/_runner.scss +0 -0
  22. data/tests/bootcamp/{core → dist/core}/mixins/_should.scss +0 -0
  23. data/tests/bootcamp/{core → dist/core}/mixins/_xdescribe.scss +0 -0
  24. data/tests/bootcamp/{core → dist/core}/mixins/_xit.scss +0 -0
  25. data/tests/bootcamp/{core → dist/core}/variables/_helpers.scss +0 -0
  26. data/tests/bootcamp/{core → dist/core}/variables/_settings.scss +0 -0
  27. data/tests/bootcamp/{core → dist/core}/variables/_should.scss +0 -0
  28. data/tests/bootcamp/{core → dist/core}/variables/_trackers.scss +0 -0
  29. data/tests/bootcamp/{lib → dist/lib}/_sassyjson.scss +0 -0
  30. data/tests/bootcamp/{matchers → dist/matchers}/_be.scss +0 -0
  31. data/tests/bootcamp/{matchers → dist/matchers}/_equal.scss +0 -0
  32. data/tests/bootcamp/{matchers → dist/matchers}/lists/_be-empty.scss +0 -0
  33. data/tests/bootcamp/{matchers → dist/matchers}/lists/_be-longer-than.scss +0 -0
  34. data/tests/bootcamp/{matchers → dist/matchers}/lists/_be-shorter-than.scss +0 -0
  35. data/tests/bootcamp/{matchers → dist/matchers}/lists/_contain.scss +0 -0
  36. data/tests/bootcamp/{matchers → dist/matchers}/lists/_deep-contain.scss +0 -0
  37. data/tests/bootcamp/{matchers → dist/matchers}/lists/_deep-equal.scss +0 -0
  38. data/tests/bootcamp/{matchers → dist/matchers}/lists/_have-length-of.scss +0 -0
  39. data/tests/bootcamp/{matchers → dist/matchers}/numbers/_be-close-to.scss +0 -0
  40. data/tests/bootcamp/{matchers → dist/matchers}/numbers/_be-greater-than.scss +0 -0
  41. data/tests/bootcamp/{matchers → dist/matchers}/numbers/_be-less-than.scss +0 -0
  42. data/tests/bootcamp/{matchers → dist/matchers}/types/_be-falsy.scss +0 -0
  43. data/tests/bootcamp/{matchers → dist/matchers}/types/_be-null.scss +0 -0
  44. data/tests/bootcamp/{matchers → dist/matchers}/types/_be-truthy.scss +0 -0
  45. data/tests/bootcamp/{matchers → dist/matchers}/types/_have-type-of.scss +0 -0
  46. data/tests/bootcamp/{utils → dist/utils}/_contain.scss +0 -0
  47. data/tests/bootcamp/{utils → dist/utils}/_equal.scss +0 -0
  48. data/tests/bootcamp/{utils → dist/utils}/_list-join.scss +0 -0
  49. data/tests/bootcamp/{utils → dist/utils}/_power.scss +0 -0
  50. data/tests/bootcamp/package.json +63 -0
  51. data/tests/bootcamp/tasks/bootcamp.coffee +83 -0
  52. data/tests/bootcamp/test/core/functions/_actual.scss +10 -0
  53. data/tests/bootcamp/test/core/functions/_expect.scss +6 -0
  54. data/tests/bootcamp/test/core/functions/_not-to.scss +5 -0
  55. data/tests/bootcamp/test/core/functions/_should.scss +10 -0
  56. data/tests/bootcamp/test/core/functions/_to.scss +5 -0
  57. data/tests/bootcamp/test/core/mixins/_describe.scss +11 -0
  58. data/tests/bootcamp/test/core/mixins/_it.scss +5 -0
  59. data/tests/bootcamp/test/core/mixins/_should.scss +5 -0
  60. data/tests/bootcamp/test/core/mixins/_xdescribe.scss +28 -0
  61. data/tests/bootcamp/test/core/mixins/_xit.scss +12 -0
  62. data/tests/bootcamp/test/matchers/_be.scss +90 -0
  63. data/tests/bootcamp/test/matchers/_equal.scss +33 -0
  64. data/tests/bootcamp/test/matchers/lists/_be-empty.scss +12 -0
  65. data/tests/bootcamp/test/matchers/lists/_be-longer-than.scss +29 -0
  66. data/tests/bootcamp/test/matchers/lists/_be-shorter-than.scss +29 -0
  67. data/tests/bootcamp/test/matchers/lists/_contain.scss +39 -0
  68. data/tests/bootcamp/test/matchers/lists/_deep-contain.scss +51 -0
  69. data/tests/bootcamp/test/matchers/lists/_deep-equal.scss +151 -0
  70. data/tests/bootcamp/test/matchers/lists/_have-length-of.scss +31 -0
  71. data/tests/bootcamp/test/matchers/numbers/_be-close-to.scss +24 -0
  72. data/tests/bootcamp/test/matchers/numbers/_be-greater-than.scss +16 -0
  73. data/tests/bootcamp/test/matchers/numbers/_be-less-than.scss +16 -0
  74. data/tests/bootcamp/test/matchers/types/_be-falsy.scss +14 -0
  75. data/tests/bootcamp/test/matchers/types/_be-null.scss +13 -0
  76. data/tests/bootcamp/test/matchers/types/_be-truthy.scss +13 -0
  77. data/tests/bootcamp/test/matchers/types/_have-type-of.scss +17 -0
  78. data/tests/bootcamp/test/specs.scss +45 -0
  79. data/tests/bootcamp/test/utils/_contain.scss +41 -0
  80. data/tests/bootcamp/test/utils/_equal.scss +79 -0
  81. data/tests/bootcamp/test/utils/_list-join.scss +39 -0
  82. data/tests/bootcamp/test/utils/_power.scss +13 -0
  83. data/tests/input/functions/helpers/_helpers.scss +21 -0
  84. data/tests/input/output.scss +8 -7
  85. data/tests/output/output.css +4 -4
  86. metadata +158 -80
@@ -0,0 +1,13 @@
1
+ @include describe("Be Null") {
2
+ @include it("should expect null to be null") {
3
+ @include should( expect( null ), to( be-null()));
4
+ }
5
+
6
+ @include it("should expect other values not to be null") {
7
+ @include should( expect( 1 ), not-to( be-null()));
8
+ @include should( expect( a ), not-to( be-null()));
9
+ @include should( expect( true ), not-to( be-null()));
10
+ @include should( expect( false ), not-to( be-null()));
11
+ @include should( expect( "" ), not-to( be-null()));
12
+ }
13
+ }
@@ -0,0 +1,13 @@
1
+ @include describe("Be Undefined") {
2
+ @include it("should expect truthy values to be truthy") {
3
+ @include should( expect( true ), to( be-truthy()));
4
+ @include should( expect( 0 ), to( be-truthy()));
5
+ @include should( expect( 1 ), to( be-truthy()));
6
+ @include should( expect( "" ), to( be-truthy()));
7
+ }
8
+
9
+ @include it("should expect falsy values not to be truthy") {
10
+ @include should( expect( false ), not-to( be-truthy()));
11
+ @include should( expect( null ), not-to( be-truthy()));
12
+ }
13
+ }
@@ -0,0 +1,17 @@
1
+ @include describe("Be Type") {
2
+ @include it("should expect to have type of") {
3
+ @include should( expect( 1 ), to( have-type-of("number") ));
4
+ @include should( expect( true ), to( have-type-of("bool") ));
5
+ @include should( expect( (1, 2) ), to( have-type-of("list") ));
6
+ @include should( expect( "foo" ), to( have-type-of("string") ));
7
+ @include should( expect( #eee ), to( have-type-of("color") ));
8
+ }
9
+
10
+ @include it("should expect not to have type of") {
11
+ @include should( expect( 1 ), not-to( have-type-of("bool") ));
12
+ @include should( expect( true ), not-to( have-type-of("list") ));
13
+ @include should( expect( (1, 2) ), not-to( have-type-of("string") ));
14
+ @include should( expect( "foo" ), not-to( have-type-of("color") ));
15
+ @include should( expect( #eee ), not-to( have-type-of("number") ));
16
+ }
17
+ }
@@ -0,0 +1,45 @@
1
+ @import "bootcamp";
2
+
3
+ $bc-setting-verbose: false;
4
+ $bc-setting-warnings: false;
5
+
6
+ @include runner-start;
7
+
8
+ @import "core/mixins/describe";
9
+ @import "core/mixins/it";
10
+ @import "core/mixins/should";
11
+ @import "core/mixins/xdescribe";
12
+ @import "core/mixins/xit";
13
+
14
+ @import "core/functions/actual";
15
+ @import "core/functions/expect";
16
+ @import "core/functions/not-to";
17
+ @import "core/functions/should";
18
+ @import "core/functions/to";
19
+
20
+ @import "utils/contain";
21
+ @import "utils/equal";
22
+ @import "utils/list-join";
23
+ @import "utils/power";
24
+
25
+ @import "matchers/be";
26
+ @import "matchers/equal";
27
+
28
+ @import "matchers/lists/be-empty";
29
+ @import "matchers/lists/be-longer-than";
30
+ @import "matchers/lists/be-shorter-than";
31
+ @import "matchers/lists/contain";
32
+ @import "matchers/lists/deep-contain";
33
+ @import "matchers/lists/deep-equal";
34
+ @import "matchers/lists/have-length-of";
35
+
36
+ @import "matchers/numbers/be-close-to";
37
+ @import "matchers/numbers/be-greater-than";
38
+ @import "matchers/numbers/be-less-than";
39
+
40
+ @import "matchers/types/be-falsy";
41
+ @import "matchers/types/be-null";
42
+ @import "matchers/types/be-truthy";
43
+ @import "matchers/types/have-type-of";
44
+
45
+ @include runner-end;
@@ -0,0 +1,41 @@
1
+ @include describe("Contain Util") {
2
+ @include it("should return true for lists that contain a value") {
3
+ $list-1: 1, 2, 3;
4
+ $list-2: "foo", "bar", "baz";
5
+ $list-3: true, false, true;
6
+
7
+ @include should(expect( bc-util-contain( $list-1, 2 ) ), to( be( true )));
8
+ @include should(expect( bc-util-contain( $list-2, "bar" ) ), to( be( true )));
9
+ @include should(expect( bc-util-contain( $list-3, false ) ), to( be( true )));
10
+ }
11
+
12
+ @include it("should return false for lists that do not contain a value") {
13
+ $list-1: 1, 2, 3;
14
+ $list-2: "foo", "bar", "baz";
15
+ $list-3: true, false, true;
16
+
17
+ @include should(expect( bc-util-contain( $list-1, 4 ) ), to( be( false )));
18
+ @include should(expect( bc-util-contain( $list-2, "tah" ) ), to( be( false )));
19
+ @include should(expect( bc-util-contain( $list-3, null ) ), to( be( false )));
20
+ }
21
+
22
+ @include it("should return true for lists that deep contain a value") {
23
+ $list-1: 1, (2, 3);
24
+ $list-2: "foo", ("bar", "baz");
25
+ $list-3: true, (false, true);
26
+
27
+ @include should(expect( bc-util-contain( $list-1, 2, $recursive: true ) ), to( be( true )));
28
+ @include should(expect( bc-util-contain( $list-2, "bar", $recursive: true ) ), to( be( true )));
29
+ @include should(expect( bc-util-contain( $list-3, false, $recursive: true ) ), to( be( true )));
30
+ }
31
+
32
+ @include it("should return false for lists that do not deep contain a value") {
33
+ $list-1: 1, (2, 3);
34
+ $list-2: "foo", ("bar", "baz");
35
+ $list-3: true, (false, true);
36
+
37
+ @include should(expect( bc-util-contain( $list-1, 4, $recursive: true ) ), to( be( false )));
38
+ @include should(expect( bc-util-contain( $list-2, "tah", $recursive: true ) ), to( be( false )));
39
+ @include should(expect( bc-util-contain( $list-3, null, $recursive: true ) ), to( be( false )));
40
+ }
41
+ }
@@ -0,0 +1,79 @@
1
+ @include describe("Equal Util") {
2
+ @include it("should return true for lists that are equal") {
3
+ $list-1: 1, 2, 3;
4
+ $list-2: "foo", "bar", "baz";
5
+ $list-3: true, false, true;
6
+
7
+ @include should(expect( bc-util-equal( $list-1, $list-1 ) ), to( be( true )));
8
+ @include should(expect( bc-util-equal( $list-2, $list-2 ) ), to( be( true )));
9
+ @include should(expect( bc-util-equal( $list-3, $list-3 ) ), to( be( true )));
10
+ }
11
+
12
+ @include it("should return false for lists that are not equal") {
13
+ $list-1a: 1, 2, 3;
14
+ $list-1b: 3, 2, 1;
15
+
16
+ $list-2a: "foo", "bar", "baz";
17
+ $list-2b: "baz", "bar", "foo";
18
+
19
+ $list-3a: true, false, true;
20
+ $list-3b: false, true, false;
21
+
22
+ @include should(expect( bc-util-equal( $list-1a, $list-1b ) ), to( be( false )));
23
+ @include should(expect( bc-util-equal( $list-2a, $list-2b ) ), to( be( false )));
24
+ @include should(expect( bc-util-equal( $list-3a, $list-3b ) ), to( be( false )));
25
+ }
26
+
27
+ @include it("should return true for deep lists that are equal") {
28
+ $list-1: 1, (2, 3);
29
+ $list-2: "foo", ("bar", "baz");
30
+ $list-3: true, (false, true);
31
+
32
+ @include should(expect( bc-util-equal( $list-1, $list-1 ) ), to( be( true )));
33
+ @include should(expect( bc-util-equal( $list-2, $list-2 ) ), to( be( true )));
34
+ @include should(expect( bc-util-equal( $list-3, $list-3 ) ), to( be( true )));
35
+ }
36
+
37
+ @include it("should return false for deep lists that are not equal") {
38
+ $list-1a: 1, (2, 3);
39
+ $list-1b: 1, (3, 2);
40
+
41
+ $list-2a: "foo", ("bar", "baz");
42
+ $list-2b: "foo", ("baz", "bar");
43
+
44
+ $list-3a: true, (false, true);
45
+ $list-3b: true, (true, false);
46
+
47
+ @include should(expect( bc-util-equal( $list-1a, $list-1b ) ), to( be( false )));
48
+ @include should(expect( bc-util-equal( $list-2a, $list-2b ) ), to( be( false )));
49
+ @include should(expect( bc-util-equal( $list-3a, $list-3b ) ), to( be( false )));
50
+ }
51
+
52
+ @include it("should return true for lists that are equal and have different list seperators") {
53
+ $list-1a: 1 2 3;
54
+ $list-1b: 1, 2, 3;
55
+ $list-2a: "foo" "bar" "baz";
56
+ $list-2b: "foo", "bar", "baz";
57
+ $list-3a: true false true;
58
+ $list-3b: true, false, true;
59
+
60
+ @include should(expect( bc-util-equal( $list-1a, $list-1b ) ), to( be( true )));
61
+ @include should(expect( bc-util-equal( $list-2a, $list-2b ) ), to( be( true )));
62
+ @include should(expect( bc-util-equal( $list-3a, $list-3b ) ), to( be( true )));
63
+ }
64
+
65
+ @include it("should return false for lists that are not equal and have different list seperators") {
66
+ $list-1a: 1 2 3;
67
+ $list-1b: 3, 2, 1;
68
+
69
+ $list-2a: "foo" "bar" "baz";
70
+ $list-2b: "baz", "bar", "foo";
71
+
72
+ $list-3a: true false true;
73
+ $list-3b: false, true, false;
74
+
75
+ @include should(expect( bc-util-equal( $list-1a, $list-1b ) ), to( be( false )));
76
+ @include should(expect( bc-util-equal( $list-2a, $list-2b ) ), to( be( false )));
77
+ @include should(expect( bc-util-equal( $list-3a, $list-3b ) ), to( be( false )));
78
+ }
79
+ }
@@ -0,0 +1,39 @@
1
+ @include describe("List Join Util") {
2
+ @include it("should join an list") {
3
+ $list-1: 1, 2, 3;
4
+ $list-2: "foo", "bar", "baz";
5
+ $list-3: true, false, true;
6
+
7
+ @include should(expect( bc-util-list-join($list-1, " ") ), to( be( "1 2 3" )));
8
+ @include should(expect( bc-util-list-join($list-2, " ") ), to( be( "foo bar baz" )));
9
+ @include should(expect( bc-util-list-join($list-3, " ") ), to( be( "true false true" )));
10
+ }
11
+
12
+ @include it("should work with any seperator") {
13
+ $list: 1, 2, 3;
14
+
15
+ @include should(expect( bc-util-list-join($list, "-") ), to( be( "1-2-3" )));
16
+ @include should(expect( bc-util-list-join($list, true) ), to( be( "1true2true3" )));
17
+ }
18
+
19
+ @include it("should slice a list at start point") {
20
+ $list: 1, 2, 3, 4, 5;
21
+
22
+ @include should(expect( bc-util-list-join($list, " ", $slice-start: 3) ), to( be( "3 4 5" )));
23
+ @include should(expect( bc-util-list-join($list, " ", $slice-start: 2) ), to( be( "2 3 4 5" )));
24
+ }
25
+
26
+ @include it("should slice a list at the end point") {
27
+ $list: 1, 2, 3, 4, 5;
28
+
29
+ @include should(expect( bc-util-list-join($list, " ", $slice-end: 2) ), to( be( "1 2 3" )));
30
+ @include should(expect( bc-util-list-join($list, " ", $slice-end: 3) ), to( be( "1 2" )));
31
+ }
32
+
33
+ @include it("should slice a list at start and end points") {
34
+ $list: 1, 2, 3, 4, 5;
35
+
36
+ @include should(expect( bc-util-list-join($list, " ", $slice-start: 2, $slice-end: 2) ), to( be( "2 3" )));
37
+ @include should(expect( bc-util-list-join($list, " ", $slice-start: 3, $slice-end: 1) ), to( be( "3 4" )));
38
+ }
39
+ }
@@ -0,0 +1,13 @@
1
+ @include describe("Power Util") {
2
+ @include it("should expect positive values to be calculated correctly") {
3
+ @include should( expect( bc-util-power( 10, 2) ), to( equal( 100 )));
4
+ @include should( expect( bc-util-power( 2, 2) ), to( equal( 4 )));
5
+ @include should( expect( bc-util-power(0.5, 2) ), to( equal( 0.25 )));
6
+ }
7
+
8
+ @include it("should expect negative values to be calculated correctly") {
9
+ @include should( expect( bc-util-power( 10, -2) ), to( equal( 0.01 )));
10
+ @include should( expect( bc-util-power( 2, -2) ), to( equal( 0.25 )));
11
+ @include should( expect( bc-util-power(0.5, -2) ), to( equal( 4 )));
12
+ }
13
+ }
@@ -414,3 +414,24 @@
414
414
  );
415
415
  }
416
416
  }
417
+
418
+ //
419
+ // Convert pixel value to rem
420
+ //
421
+ @include describe("[function] to-rem") {
422
+
423
+ @include it("should expect passed pixel value to be converted to rems") {
424
+ @include should(expect(
425
+ flint-to-rem(16px)),
426
+ to(be(1rem))
427
+ );
428
+ @include should(expect(
429
+ flint-to-rem(32px)),
430
+ to(be(2rem))
431
+ );
432
+ @include should(expect(
433
+ flint-to-rem(16px, 32px)),
434
+ to(be(0.5rem))
435
+ );
436
+ }
437
+ }
@@ -1,6 +1,13 @@
1
1
  ///
2
2
  /// Configuration map
3
3
  ///
4
+
5
+ // Bootcamp
6
+ @import "../bootcamp/dist/bootcamp";
7
+
8
+ // Flint
9
+ @import "../../stylesheets/flint";
10
+
4
11
  $flint: (
5
12
  "breakpoints": (
6
13
  "desktop": (
@@ -32,13 +39,7 @@ $flint: (
32
39
  "support-syntax": false,
33
40
  "debug-mode": false
34
41
  )
35
- );
36
-
37
- // Bootcamp
38
- @import "../bootcamp/bootcamp";
39
-
40
- // Flint
41
- @import "../../stylesheets/flint";
42
+ ) !global;
42
43
 
43
44
  // Enable development mode
44
45
  $flint__development-mode: true !global;
@@ -107,10 +107,10 @@
107
107
 
108
108
  Test Results {
109
109
  Success: true;
110
- Stats: ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔;
111
- Tests: 77;
112
- Asserts: 177;
113
- Passed: 77;
110
+ Stats: ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔;
111
+ Tests: 78;
112
+ Asserts: 180;
113
+ Passed: 78;
114
114
  Failed: 0;
115
115
  Skipped: 0;
116
116
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flint-gs
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.9
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ezekiel Gabrielse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-29 00:00:00.000000000 Z
11
+ date: 2014-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -116,45 +116,84 @@ files:
116
116
  - stylesheets/flint/mixins/lib/_print-instance.scss
117
117
  - LICENSE
118
118
  - README.md
119
- - tests/bootcamp/_bootcamp.scss
120
- - tests/bootcamp/bootcamp.coffee
121
- - tests/bootcamp/core/functions/_actual.scss
122
- - tests/bootcamp/core/functions/_error.scss
123
- - tests/bootcamp/core/functions/_expect.scss
124
- - tests/bootcamp/core/functions/_not-to.scss
125
- - tests/bootcamp/core/functions/_should.scss
126
- - tests/bootcamp/core/functions/_to.scss
127
- - tests/bootcamp/core/mixins/_describe.scss
128
- - tests/bootcamp/core/mixins/_it.scss
129
- - tests/bootcamp/core/mixins/_runner.scss
130
- - tests/bootcamp/core/mixins/_should.scss
131
- - tests/bootcamp/core/mixins/_xdescribe.scss
132
- - tests/bootcamp/core/mixins/_xit.scss
133
- - tests/bootcamp/core/variables/_helpers.scss
134
- - tests/bootcamp/core/variables/_settings.scss
135
- - tests/bootcamp/core/variables/_should.scss
136
- - tests/bootcamp/core/variables/_trackers.scss
137
- - tests/bootcamp/lib/_sassyjson.scss
138
- - tests/bootcamp/matchers/_be.scss
139
- - tests/bootcamp/matchers/_equal.scss
140
- - tests/bootcamp/matchers/lists/_be-empty.scss
141
- - tests/bootcamp/matchers/lists/_be-longer-than.scss
142
- - tests/bootcamp/matchers/lists/_be-shorter-than.scss
143
- - tests/bootcamp/matchers/lists/_contain.scss
144
- - tests/bootcamp/matchers/lists/_deep-contain.scss
145
- - tests/bootcamp/matchers/lists/_deep-equal.scss
146
- - tests/bootcamp/matchers/lists/_have-length-of.scss
147
- - tests/bootcamp/matchers/numbers/_be-close-to.scss
148
- - tests/bootcamp/matchers/numbers/_be-greater-than.scss
149
- - tests/bootcamp/matchers/numbers/_be-less-than.scss
150
- - tests/bootcamp/matchers/types/_be-falsy.scss
151
- - tests/bootcamp/matchers/types/_be-null.scss
152
- - tests/bootcamp/matchers/types/_be-truthy.scss
153
- - tests/bootcamp/matchers/types/_have-type-of.scss
154
- - tests/bootcamp/utils/_contain.scss
155
- - tests/bootcamp/utils/_equal.scss
156
- - tests/bootcamp/utils/_list-join.scss
157
- - tests/bootcamp/utils/_power.scss
119
+ - tests/bootcamp/bower.json
120
+ - tests/bootcamp/CHANGELOG.md
121
+ - tests/bootcamp/CONTRIBUTING.md
122
+ - tests/bootcamp/dist/_bootcamp.scss
123
+ - tests/bootcamp/dist/bootcamp.coffee
124
+ - tests/bootcamp/dist/core/functions/_actual.scss
125
+ - tests/bootcamp/dist/core/functions/_error.scss
126
+ - tests/bootcamp/dist/core/functions/_expect.scss
127
+ - tests/bootcamp/dist/core/functions/_not-to.scss
128
+ - tests/bootcamp/dist/core/functions/_should.scss
129
+ - tests/bootcamp/dist/core/functions/_to.scss
130
+ - tests/bootcamp/dist/core/mixins/_describe.scss
131
+ - tests/bootcamp/dist/core/mixins/_it.scss
132
+ - tests/bootcamp/dist/core/mixins/_runner.scss
133
+ - tests/bootcamp/dist/core/mixins/_should.scss
134
+ - tests/bootcamp/dist/core/mixins/_xdescribe.scss
135
+ - tests/bootcamp/dist/core/mixins/_xit.scss
136
+ - tests/bootcamp/dist/core/variables/_helpers.scss
137
+ - tests/bootcamp/dist/core/variables/_settings.scss
138
+ - tests/bootcamp/dist/core/variables/_should.scss
139
+ - tests/bootcamp/dist/core/variables/_trackers.scss
140
+ - tests/bootcamp/dist/lib/_sassyjson.scss
141
+ - tests/bootcamp/dist/matchers/_be.scss
142
+ - tests/bootcamp/dist/matchers/_equal.scss
143
+ - tests/bootcamp/dist/matchers/lists/_be-empty.scss
144
+ - tests/bootcamp/dist/matchers/lists/_be-longer-than.scss
145
+ - tests/bootcamp/dist/matchers/lists/_be-shorter-than.scss
146
+ - tests/bootcamp/dist/matchers/lists/_contain.scss
147
+ - tests/bootcamp/dist/matchers/lists/_deep-contain.scss
148
+ - tests/bootcamp/dist/matchers/lists/_deep-equal.scss
149
+ - tests/bootcamp/dist/matchers/lists/_have-length-of.scss
150
+ - tests/bootcamp/dist/matchers/numbers/_be-close-to.scss
151
+ - tests/bootcamp/dist/matchers/numbers/_be-greater-than.scss
152
+ - tests/bootcamp/dist/matchers/numbers/_be-less-than.scss
153
+ - tests/bootcamp/dist/matchers/types/_be-falsy.scss
154
+ - tests/bootcamp/dist/matchers/types/_be-null.scss
155
+ - tests/bootcamp/dist/matchers/types/_be-truthy.scss
156
+ - tests/bootcamp/dist/matchers/types/_have-type-of.scss
157
+ - tests/bootcamp/dist/utils/_contain.scss
158
+ - tests/bootcamp/dist/utils/_equal.scss
159
+ - tests/bootcamp/dist/utils/_list-join.scss
160
+ - tests/bootcamp/dist/utils/_power.scss
161
+ - tests/bootcamp/Gruntfile.coffee
162
+ - tests/bootcamp/LICENSE.md
163
+ - tests/bootcamp/package.json
164
+ - tests/bootcamp/README.md
165
+ - tests/bootcamp/tasks/bootcamp.coffee
166
+ - tests/bootcamp/test/core/functions/_actual.scss
167
+ - tests/bootcamp/test/core/functions/_expect.scss
168
+ - tests/bootcamp/test/core/functions/_not-to.scss
169
+ - tests/bootcamp/test/core/functions/_should.scss
170
+ - tests/bootcamp/test/core/functions/_to.scss
171
+ - tests/bootcamp/test/core/mixins/_describe.scss
172
+ - tests/bootcamp/test/core/mixins/_it.scss
173
+ - tests/bootcamp/test/core/mixins/_should.scss
174
+ - tests/bootcamp/test/core/mixins/_xdescribe.scss
175
+ - tests/bootcamp/test/core/mixins/_xit.scss
176
+ - tests/bootcamp/test/matchers/_be.scss
177
+ - tests/bootcamp/test/matchers/_equal.scss
178
+ - tests/bootcamp/test/matchers/lists/_be-empty.scss
179
+ - tests/bootcamp/test/matchers/lists/_be-longer-than.scss
180
+ - tests/bootcamp/test/matchers/lists/_be-shorter-than.scss
181
+ - tests/bootcamp/test/matchers/lists/_contain.scss
182
+ - tests/bootcamp/test/matchers/lists/_deep-contain.scss
183
+ - tests/bootcamp/test/matchers/lists/_deep-equal.scss
184
+ - tests/bootcamp/test/matchers/lists/_have-length-of.scss
185
+ - tests/bootcamp/test/matchers/numbers/_be-close-to.scss
186
+ - tests/bootcamp/test/matchers/numbers/_be-greater-than.scss
187
+ - tests/bootcamp/test/matchers/numbers/_be-less-than.scss
188
+ - tests/bootcamp/test/matchers/types/_be-falsy.scss
189
+ - tests/bootcamp/test/matchers/types/_be-null.scss
190
+ - tests/bootcamp/test/matchers/types/_be-truthy.scss
191
+ - tests/bootcamp/test/matchers/types/_have-type-of.scss
192
+ - tests/bootcamp/test/specs.scss
193
+ - tests/bootcamp/test/utils/_contain.scss
194
+ - tests/bootcamp/test/utils/_equal.scss
195
+ - tests/bootcamp/test/utils/_list-join.scss
196
+ - tests/bootcamp/test/utils/_power.scss
158
197
  - tests/config.rb
159
198
  - tests/input/functions/_functions.scss
160
199
  - tests/input/functions/helpers/_helpers.scss
@@ -210,45 +249,84 @@ signing_key:
210
249
  specification_version: 4
211
250
  summary: A highly advanced Sass grid framework designed for rapid responsive development.
212
251
  test_files:
213
- - tests/bootcamp/_bootcamp.scss
214
- - tests/bootcamp/bootcamp.coffee
215
- - tests/bootcamp/core/functions/_actual.scss
216
- - tests/bootcamp/core/functions/_error.scss
217
- - tests/bootcamp/core/functions/_expect.scss
218
- - tests/bootcamp/core/functions/_not-to.scss
219
- - tests/bootcamp/core/functions/_should.scss
220
- - tests/bootcamp/core/functions/_to.scss
221
- - tests/bootcamp/core/mixins/_describe.scss
222
- - tests/bootcamp/core/mixins/_it.scss
223
- - tests/bootcamp/core/mixins/_runner.scss
224
- - tests/bootcamp/core/mixins/_should.scss
225
- - tests/bootcamp/core/mixins/_xdescribe.scss
226
- - tests/bootcamp/core/mixins/_xit.scss
227
- - tests/bootcamp/core/variables/_helpers.scss
228
- - tests/bootcamp/core/variables/_settings.scss
229
- - tests/bootcamp/core/variables/_should.scss
230
- - tests/bootcamp/core/variables/_trackers.scss
231
- - tests/bootcamp/lib/_sassyjson.scss
232
- - tests/bootcamp/matchers/_be.scss
233
- - tests/bootcamp/matchers/_equal.scss
234
- - tests/bootcamp/matchers/lists/_be-empty.scss
235
- - tests/bootcamp/matchers/lists/_be-longer-than.scss
236
- - tests/bootcamp/matchers/lists/_be-shorter-than.scss
237
- - tests/bootcamp/matchers/lists/_contain.scss
238
- - tests/bootcamp/matchers/lists/_deep-contain.scss
239
- - tests/bootcamp/matchers/lists/_deep-equal.scss
240
- - tests/bootcamp/matchers/lists/_have-length-of.scss
241
- - tests/bootcamp/matchers/numbers/_be-close-to.scss
242
- - tests/bootcamp/matchers/numbers/_be-greater-than.scss
243
- - tests/bootcamp/matchers/numbers/_be-less-than.scss
244
- - tests/bootcamp/matchers/types/_be-falsy.scss
245
- - tests/bootcamp/matchers/types/_be-null.scss
246
- - tests/bootcamp/matchers/types/_be-truthy.scss
247
- - tests/bootcamp/matchers/types/_have-type-of.scss
248
- - tests/bootcamp/utils/_contain.scss
249
- - tests/bootcamp/utils/_equal.scss
250
- - tests/bootcamp/utils/_list-join.scss
251
- - tests/bootcamp/utils/_power.scss
252
+ - tests/bootcamp/bower.json
253
+ - tests/bootcamp/CHANGELOG.md
254
+ - tests/bootcamp/CONTRIBUTING.md
255
+ - tests/bootcamp/dist/_bootcamp.scss
256
+ - tests/bootcamp/dist/bootcamp.coffee
257
+ - tests/bootcamp/dist/core/functions/_actual.scss
258
+ - tests/bootcamp/dist/core/functions/_error.scss
259
+ - tests/bootcamp/dist/core/functions/_expect.scss
260
+ - tests/bootcamp/dist/core/functions/_not-to.scss
261
+ - tests/bootcamp/dist/core/functions/_should.scss
262
+ - tests/bootcamp/dist/core/functions/_to.scss
263
+ - tests/bootcamp/dist/core/mixins/_describe.scss
264
+ - tests/bootcamp/dist/core/mixins/_it.scss
265
+ - tests/bootcamp/dist/core/mixins/_runner.scss
266
+ - tests/bootcamp/dist/core/mixins/_should.scss
267
+ - tests/bootcamp/dist/core/mixins/_xdescribe.scss
268
+ - tests/bootcamp/dist/core/mixins/_xit.scss
269
+ - tests/bootcamp/dist/core/variables/_helpers.scss
270
+ - tests/bootcamp/dist/core/variables/_settings.scss
271
+ - tests/bootcamp/dist/core/variables/_should.scss
272
+ - tests/bootcamp/dist/core/variables/_trackers.scss
273
+ - tests/bootcamp/dist/lib/_sassyjson.scss
274
+ - tests/bootcamp/dist/matchers/_be.scss
275
+ - tests/bootcamp/dist/matchers/_equal.scss
276
+ - tests/bootcamp/dist/matchers/lists/_be-empty.scss
277
+ - tests/bootcamp/dist/matchers/lists/_be-longer-than.scss
278
+ - tests/bootcamp/dist/matchers/lists/_be-shorter-than.scss
279
+ - tests/bootcamp/dist/matchers/lists/_contain.scss
280
+ - tests/bootcamp/dist/matchers/lists/_deep-contain.scss
281
+ - tests/bootcamp/dist/matchers/lists/_deep-equal.scss
282
+ - tests/bootcamp/dist/matchers/lists/_have-length-of.scss
283
+ - tests/bootcamp/dist/matchers/numbers/_be-close-to.scss
284
+ - tests/bootcamp/dist/matchers/numbers/_be-greater-than.scss
285
+ - tests/bootcamp/dist/matchers/numbers/_be-less-than.scss
286
+ - tests/bootcamp/dist/matchers/types/_be-falsy.scss
287
+ - tests/bootcamp/dist/matchers/types/_be-null.scss
288
+ - tests/bootcamp/dist/matchers/types/_be-truthy.scss
289
+ - tests/bootcamp/dist/matchers/types/_have-type-of.scss
290
+ - tests/bootcamp/dist/utils/_contain.scss
291
+ - tests/bootcamp/dist/utils/_equal.scss
292
+ - tests/bootcamp/dist/utils/_list-join.scss
293
+ - tests/bootcamp/dist/utils/_power.scss
294
+ - tests/bootcamp/Gruntfile.coffee
295
+ - tests/bootcamp/LICENSE.md
296
+ - tests/bootcamp/package.json
297
+ - tests/bootcamp/README.md
298
+ - tests/bootcamp/tasks/bootcamp.coffee
299
+ - tests/bootcamp/test/core/functions/_actual.scss
300
+ - tests/bootcamp/test/core/functions/_expect.scss
301
+ - tests/bootcamp/test/core/functions/_not-to.scss
302
+ - tests/bootcamp/test/core/functions/_should.scss
303
+ - tests/bootcamp/test/core/functions/_to.scss
304
+ - tests/bootcamp/test/core/mixins/_describe.scss
305
+ - tests/bootcamp/test/core/mixins/_it.scss
306
+ - tests/bootcamp/test/core/mixins/_should.scss
307
+ - tests/bootcamp/test/core/mixins/_xdescribe.scss
308
+ - tests/bootcamp/test/core/mixins/_xit.scss
309
+ - tests/bootcamp/test/matchers/_be.scss
310
+ - tests/bootcamp/test/matchers/_equal.scss
311
+ - tests/bootcamp/test/matchers/lists/_be-empty.scss
312
+ - tests/bootcamp/test/matchers/lists/_be-longer-than.scss
313
+ - tests/bootcamp/test/matchers/lists/_be-shorter-than.scss
314
+ - tests/bootcamp/test/matchers/lists/_contain.scss
315
+ - tests/bootcamp/test/matchers/lists/_deep-contain.scss
316
+ - tests/bootcamp/test/matchers/lists/_deep-equal.scss
317
+ - tests/bootcamp/test/matchers/lists/_have-length-of.scss
318
+ - tests/bootcamp/test/matchers/numbers/_be-close-to.scss
319
+ - tests/bootcamp/test/matchers/numbers/_be-greater-than.scss
320
+ - tests/bootcamp/test/matchers/numbers/_be-less-than.scss
321
+ - tests/bootcamp/test/matchers/types/_be-falsy.scss
322
+ - tests/bootcamp/test/matchers/types/_be-null.scss
323
+ - tests/bootcamp/test/matchers/types/_be-truthy.scss
324
+ - tests/bootcamp/test/matchers/types/_have-type-of.scss
325
+ - tests/bootcamp/test/specs.scss
326
+ - tests/bootcamp/test/utils/_contain.scss
327
+ - tests/bootcamp/test/utils/_equal.scss
328
+ - tests/bootcamp/test/utils/_list-join.scss
329
+ - tests/bootcamp/test/utils/_power.scss
252
330
  - tests/config.rb
253
331
  - tests/input/functions/_functions.scss
254
332
  - tests/input/functions/helpers/_helpers.scss