compass-960-plugin 0.9.13 → 0.10.0.beta.0

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.
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{compass-960-plugin}
5
- s.version = "0.9.13"
5
+ s.version = "0.10.0.beta.0"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.3.6")
8
8
  s.authors = ["Chris Eppstein"]
9
- s.date = %q{2010-04-13}
9
+ s.date = %q{2010-06-07}
10
10
  s.description = %q{The 960 Grid System is an effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. http://960.gs/}
11
11
  s.email = %q{chris@eppsteins.net}
12
12
  s.has_rdoc = false
@@ -25,5 +25,5 @@ Gem::Specification.new do |s|
25
25
  s.rubyforge_project = %q{compass-960-plugin}
26
26
  s.rubygems_version = %q{1.3.6}
27
27
  s.summary = %q{Compass compatible Sass port of 960.gs.}
28
- s.add_dependency(%q<compass>, [">= 0.10.0.rc3"])
28
+ s.add_dependency(%q<compass>, [">= 0.10.0"])
29
29
  end
@@ -58,9 +58,29 @@ $ninesixty-columns: 12 !default
58
58
  .omega
59
59
  +omega
60
60
 
61
+ =grid-move-base
62
+ position: relative
63
+
64
+ =grid-push($n, $cols)
65
+ left: ($ninesixty-grid-width / $cols) * $n
66
+
67
+ =grid-pull($n, $cols)
68
+ left: -($ninesixty-grid-width / $cols) * $n
69
+
70
+ =grid-movements($cols: $ninesixty-columns)
71
+ #{enumerate(".push", 1, $cols, "_")},
72
+ #{enumerate(".pull", 1, $cols, "_")}
73
+ +grid-move-base
74
+ @for $n from 1 through $cols
75
+ .push_#{$n}
76
+ +grid-push($n, $cols)
77
+ .pull_#{$n}
78
+ +grid-pull($n, $cols)
79
+
61
80
  =grid-system($cols: $ninesixty-columns)
62
81
  +grid-container
63
82
  +grids($cols)
64
83
  +grid-prefixes($cols)
65
84
  +grid-suffixes($cols)
66
85
  +grid-children
86
+ +grid-movements($cols)
@@ -1,2 +1,17 @@
1
1
  stylesheet 'grid.sass', :media => "screen, projection"
2
2
  stylesheet 'text.sass', :media => "screen, projection"
3
+
4
+ description "The 960 Grid System."
5
+
6
+ help %Q{
7
+ Please see the 960 website for documentation:
8
+
9
+ http://960.gs/
10
+ }
11
+
12
+ welcome_message %Q{
13
+ Please see the 960 website for documentation:
14
+
15
+ http://960.gs/
16
+ }
17
+
metadata CHANGED
@@ -1,12 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass-960-plugin
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
4
+ prerelease: true
5
5
  segments:
6
6
  - 0
7
- - 9
8
- - 13
9
- version: 0.9.13
7
+ - 10
8
+ - 0
9
+ - beta
10
+ - 0
11
+ version: 0.10.0.beta.0
10
12
  platform: ruby
11
13
  authors:
12
14
  - Chris Eppstein
@@ -14,7 +16,7 @@ autorequire:
14
16
  bindir: bin
15
17
  cert_chain: []
16
18
 
17
- date: 2010-04-13 00:00:00 -07:00
19
+ date: 2010-06-07 00:00:00 -07:00
18
20
  default_executable:
19
21
  dependencies:
20
22
  - !ruby/object:Gem::Dependency
@@ -28,8 +30,7 @@ dependencies:
28
30
  - 0
29
31
  - 10
30
32
  - 0
31
- - rc3
32
- version: 0.10.0.rc3
33
+ version: 0.10.0
33
34
  type: :runtime
34
35
  version_requirements: *id001
35
36
  description: The 960 Grid System is an effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. http://960.gs/