susy 1.0.alpha.0 → 1.0.alpha.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,10 +1,16 @@
1
1
  Susy Changelog
2
2
  ==============
3
3
 
4
- v1.0 [UNRELEASED]
5
- -----------------
4
+ v1.0.alpha.1 [May 9 2012]
5
+ -------------------------
6
+
7
+ Due to a conflict with the Compass CSS3 module, the `columns` mixin has been
8
+ renamed `span-columns`. For the time being, there is a deprecation warning, but it will be removed entirely in the next alpha update. You should be able to search and replace `@include columns` (or `+columns`) in your project files.
9
+
10
+ v1.0.alpha.0 [May 7 2012]
11
+ -------------------------
6
12
 
7
- *Requires the latest unreleased master branch of Compass.*
13
+ *Requires Compass 0.13.alpha.0 or later.*
8
14
 
9
15
  This release is loaded with new features, but don't let that fool you. Susy
10
16
  just became shockingly simple to use. See the README for updated usage details.
@@ -66,7 +66,7 @@ $grid-padding : $gutter-width !default;
66
66
  nav { @include columns(3,12); }
67
67
  article { @include columns(9 omega,12); }
68
68
  ```
69
- **Columns**: `columns(<$columns> [<omega> , <$context>, <$from>])`
69
+ **Span Columns**: `span-columns(<$columns> [<omega> , <$context>, <$from>])`
70
70
  - _Apply to any element to align it with the Susy Grid._
71
71
  - `<$columns>`: The number of _Columns_ to span, with optional `<omega>` flag.
72
72
  - `<$context>`: Current nesting _Context_.
@@ -234,7 +234,7 @@ that you can put where you want, and use for advanced math.
234
234
  .item { width: columns(3,6); }
235
235
  ```
236
236
  **Columns**: `columns(<$columns> [, <$context>])`
237
- - _Identical to `columns` mixin, but returns the math-ready `%` multiplier._
237
+ - _Identical to `span-columns` mixin, but returns the math-ready `%`._
238
238
  - `<$columns>`: The number of _Columns_ to span,
239
239
  - `<$context>`: The _Context_.
240
240
  - Default: `$total-columns`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.alpha.0
1
+ 1.0.alpha.1
@@ -2,6 +2,8 @@
2
2
  // Imports
3
3
 
4
4
  @import "compass/layout/grid-background";
5
+ @import "compass/css3/background-origin";
6
+ @import "compass/css3/background-clip";
5
7
 
6
8
  // ---------------------------------------------------------------------------
7
9
  // Susy Grid Background
@@ -78,7 +78,7 @@
78
78
  // : Context is required on any nested elements.
79
79
  // : Context MUST NOT be declared on a root element.
80
80
  // $from : The start direction of your layout (e.g. 'left' for ltr languages)
81
- @mixin columns(
81
+ @mixin span-columns(
82
82
  $columns,
83
83
  $context : $total-columns,
84
84
  $from : $from-direction
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "susy"
5
- s.version = "1.0.alpha.0"
5
+ s.version = "1.0.alpha.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Eric Meyer"]
9
- s.date = "2012-05-06"
9
+ s.date = "2012-05-10"
10
10
  s.description = "Responsive web design with grids the quick and reliable way."
11
11
  s.email = "eric@oddbird.net"
12
12
  s.extra_rdoc_files = ["CHANGELOG.mkdn", "LICENSE.txt", "README.mkdn", "lib/susy.rb"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: susy
3
3
  version: !ruby/object:Gem::Version
4
- hash: -3702664260
4
+ hash: -3702664258
5
5
  prerelease: 4
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
9
  - alpha
10
- - 0
11
- version: 1.0.alpha.0
10
+ - 1
11
+ version: 1.0.alpha.1
12
12
  platform: ruby
13
13
  authors:
14
14
  - Eric Meyer
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2012-05-06 00:00:00 Z
19
+ date: 2012-05-10 00:00:00 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: compass