singularity-extras 1.0.0.alpha.2 → 1.0.0.alpha.3

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: f8d3f697c01762f9def6ef2d3b4ada3626e2ba1a
4
- data.tar.gz: 588f9018cbba00481e216b06b19f890a4489f580
3
+ metadata.gz: 32efe77b00f578a5f1a17a27c1c711e204b9d40d
4
+ data.tar.gz: 8755f2e4f7f03a884013086543afca47e39ba892
5
5
  SHA512:
6
- metadata.gz: f9a5856abec28844b1fac85637138788fc1e281daa97db04d340bd0936f45fefa9342a1d6047121488d052b61431bee70c5230bc72e9020047c187f7c1a9a5b2
7
- data.tar.gz: 763adac409b043706e049cec572731bca9b03e4e8b206a34ff733ae1f829ec4e37fde0b48b84667ecd13091653557a151af351c398c2e69ce8db1136b3234945
6
+ metadata.gz: bb2b01955d2ee3c7f209a8a8067a39f67490edc29f3b333158924c09fa50d7195d185d62f46f6ae0a379fbd02e7e251a2335b27732f91097ba5c6d6333bf1956
7
+ data.tar.gz: c5cfa7c9a03f5b86d02ec9e07025a70d8d5ee3a59cf7e3750316281d20384b3a4dfc3b9a5b1ec719cd8646fb2cbe0ea1baa9663a1649a3934d7da27a1c77565f
@@ -5,6 +5,6 @@ require 'modular-scale'
5
5
  Compass::Frameworks.register("singularity-extras", :path => "#{File.dirname(__FILE__)}/..")
6
6
 
7
7
  module SingularityExtras
8
- VERSION = "1.0.0.alpha.2"
9
- DATE = "2013-02-11"
8
+ VERSION = "1.0.0.alpha.3"
9
+ DATE = "2013-02-15"
10
10
  end
@@ -1,4 +1,3 @@
1
1
  @import "singularity-extras/helpers";
2
2
  @import "singularity-extras/generators";
3
- @import "singularity-extras/outputs";
4
- @import "singularity-extras/layouts";
3
+ @import "singularity-extras/outputs";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: singularity-extras
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.alpha.2
4
+ version: 1.0.0.alpha.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Kellum
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-11 00:00:00.000000000 Z
12
+ date: 2013-02-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: singularitygs
@@ -51,7 +51,6 @@ files:
51
51
  - stylesheets/_singularity-extras.scss
52
52
  - stylesheets/singularity-extras/_generators.scss
53
53
  - stylesheets/singularity-extras/_helpers.scss
54
- - stylesheets/singularity-extras/_layouts.scss
55
54
  - stylesheets/singularity-extras/_outputs.scss
56
55
  - stylesheets/singularity-extras/generators/_compound.scss
57
56
  - stylesheets/singularity-extras/generators/_ratio-spiral.scss
@@ -60,7 +59,6 @@ files:
60
59
  - stylesheets/singularity-extras/helpers/_list-sum.scss
61
60
  - stylesheets/singularity-extras/helpers/_repeat.scss
62
61
  - stylesheets/singularity-extras/helpers/_reverse.scss
63
- - stylesheets/singularity-extras/layouts/_layout.scss
64
62
  - stylesheets/singularity-extras/outputs/_calc.scss
65
63
  homepage: http://singularity.gs
66
64
  licenses: []
@@ -1 +0,0 @@
1
- @import "layouts/layout";
@@ -1,28 +0,0 @@
1
- //////////////////////////////
2
- // Wrapper mixin for overriding the global contexts as a block
3
- //////////////////////////////
4
- @mixin layout($grid: false, $gutter: false, $output-style: false) {
5
- // Private holder for current global context
6
- $layout-private-grid-holder: $grids;
7
- $layout-private-gutter-holder: $gutters;
8
- $layout-private-output-holder: $output;
9
-
10
- // Overides current global contexts, but only if needed
11
- @if $grid != false {
12
- $grids: $grid;
13
- }
14
- @if $gutter != false {
15
- $gutters: $gutter;
16
- }
17
- @if $output-style != false {
18
- $output: $output-style;
19
- }
20
-
21
- // All the things!
22
- @content;
23
-
24
- // Resets global contexts
25
- $grids: $layout-private-grid-holder;
26
- $gutters: $layout-private-gutter-holder;
27
- $output: $layout-private-output-holder;
28
- }