chriseppstein-compass-960-plugin 0.9.4 → 0.9.5

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest CHANGED
@@ -6,7 +6,6 @@ Rakefile
6
6
  README.mkdn
7
7
  sass/960/_grid.sass
8
8
  sass/960/_text.sass
9
- templates/project/config.rb
10
9
  templates/project/grid.sass
11
10
  templates/project/manifest.rb
12
11
  templates/project/text.sass
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.4
1
+ 0.9.5
@@ -1,14 +1,14 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{compass-960-plugin}
3
- s.version = "0.9.4"
3
+ s.version = "0.9.5"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["Chris Eppstein"]
7
- s.date = %q{2009-02-28}
7
+ s.date = %q{2009-04-29}
8
8
  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/}
9
9
  s.email = %q{chris@eppsteins.net}
10
10
  s.extra_rdoc_files = ["lib/ninesixty/compass_plugin.rb", "lib/ninesixty/sass_extensions.rb", "lib/ninesixty.rb", "README.mkdn"]
11
- s.files = ["lib/ninesixty/compass_plugin.rb", "lib/ninesixty/sass_extensions.rb", "lib/ninesixty.rb", "Manifest", "Rakefile", "README.mkdn", "sass/960/_grid.sass", "sass/960/_text.sass", "templates/project/config.rb", "templates/project/grid.sass", "templates/project/manifest.rb", "templates/project/text.sass", "VERSION", "compass-960-plugin.gemspec"]
11
+ s.files = ["lib/ninesixty/compass_plugin.rb", "lib/ninesixty/sass_extensions.rb", "lib/ninesixty.rb", "Manifest", "Rakefile", "README.mkdn", "sass/960/_grid.sass", "sass/960/_text.sass", "templates/project/grid.sass", "templates/project/manifest.rb", "templates/project/text.sass", "VERSION", "compass-960-plugin.gemspec"]
12
12
  s.homepage = %q{http://github.com/chriseppstein/compass-960-plugin}
13
13
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Compass-960-plugin", "--main", "README.mkdn"]
14
14
  s.require_paths = ["lib"]
data/sass/960/_grid.sass CHANGED
@@ -1,12 +1,13 @@
1
1
  !ninesixty_gutter_width ||= 20px
2
+ !ninesixty_grid_width ||= 960px
2
3
 
3
4
  =grid-container
4
5
  :margin-left auto
5
6
  :margin-right auto
6
- :width 960px
7
+ :width= !ninesixty_grid_width
7
8
 
8
9
  =grid-width(!n, !cols, !gutter_width = !ninesixty_gutter_width)
9
- :width= (960px / !cols) * !n - !gutter_width
10
+ :width= (!ninesixty_grid_width / !cols) * !n - !gutter_width
10
11
 
11
12
  =grid-unit-base(!gutter_width = !ninesixty_gutter_width)
12
13
  :display inline
@@ -33,7 +34,7 @@
33
34
  +grid-width(!n, !cols, !gutter_width)
34
35
 
35
36
  =grid-prefix(!n, !cols)
36
- :padding-left= (960px / !cols) * !n
37
+ :padding-left= (!ninesixty_grid_width / !cols) * !n
37
38
 
38
39
  =grid-prefixes(!cols)
39
40
  @for !n from 1 through !cols - 1
@@ -41,7 +42,7 @@
41
42
  +grid-prefix(!n, !cols)
42
43
 
43
44
  =grid-suffix(!n, !cols)
44
- :padding-right= (960px / !cols) * !n
45
+ :padding-right= (!ninesixty_grid_width / !cols) * !n
45
46
 
46
47
  =grid-suffixes(!cols)
47
48
  @for !n from 1 through !cols - 1
@@ -1,3 +1,2 @@
1
1
  stylesheet 'grid.sass', :media => "screen, projection"
2
2
  stylesheet 'text.sass', :media => "screen, projection"
3
- file 'config.rb'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chriseppstein-compass-960-plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Eppstein
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-02-28 00:00:00 -08:00
12
+ date: 2009-04-29 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -52,7 +52,6 @@ files:
52
52
  - README.mkdn
53
53
  - sass/960/_grid.sass
54
54
  - sass/960/_text.sass
55
- - templates/project/config.rb
56
55
  - templates/project/grid.sass
57
56
  - templates/project/manifest.rb
58
57
  - templates/project/text.sass
@@ -1 +0,0 @@
1
- require 'ninesixty'