alexcabrera-graphpaper 0.2.12 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :minor: 2
3
- :patch: 12
4
2
  :major: 0
3
+ :minor: 3
4
+ :patch: 1
data/graphpaper.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{graphpaper}
8
- s.version = "0.2.12"
8
+ s.version = "0.3.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Alex Cabrera"]
12
- s.date = %q{2009-09-05}
12
+ s.date = %q{2009-09-12}
13
13
  s.description = %q{A great starting point for projects that makes no design assumptions.}
14
14
  s.email = %q{alex@policus.com}
15
15
  s.extra_rdoc_files = [
@@ -29,13 +29,13 @@ Gem::Specification.new do |s|
29
29
  "stylesheets/graphpaper/modules/_grid.sass",
30
30
  "stylesheets/graphpaper/modules/_reset.sass",
31
31
  "stylesheets/graphpaper/modules/_typography.sass",
32
- "templates/project/_config.sass",
33
32
  "templates/project/common/_footer.sass",
34
33
  "templates/project/common/_header.sass",
35
34
  "templates/project/common/_typography.sass",
35
+ "templates/project/config/_base.sass",
36
+ "templates/project/config/_settings.sass",
36
37
  "templates/project/ie.sass",
37
38
  "templates/project/manifest.rb",
38
- "templates/project/partials/_base.sass",
39
39
  "templates/project/print.sass",
40
40
  "templates/project/screen.sass"
41
41
  ]
File without changes
@@ -17,6 +17,9 @@
17
17
  !graphpaper_grid_margin = 10px
18
18
  !graphpaper_grid_padding = 10px
19
19
 
20
+ !default_font_size = 12px
21
+ !line_height_multiplier = 1.5
22
+
20
23
  // If this is your first time in this file, your next step will probably
21
24
  // be in partials/_base.sass. There Graphpaper will walk you through
22
25
  // applying the grid on your site and recommend some best practicies that
@@ -1,5 +1,8 @@
1
- stylesheet 'partials/_base.sass'
2
- stylesheet '_config.sass'
1
+ stylesheet 'config/_settings.sass'
2
+ stylesheet 'config/_base.sass'
3
+ stylesheet 'common/_footer.sass'
4
+ stylesheet 'common/_header.sass'
5
+ stylesheet 'common/_typography.sass'
3
6
  stylesheet 'screen.sass', :media => 'screen, projection'
4
7
  stylesheet 'print.sass', :media => 'print'
5
8
  stylesheet 'ie.sass', :media => 'screen, projection', :condition => "lt IE 8"
@@ -2,6 +2,6 @@
2
2
  // screen stylesheet in order to override any changes to the default grid
3
3
  // settings.
4
4
 
5
- @import _config.sass
5
+ @import config/_settings.sass
6
6
  @import graphpaper/screen.sass
7
- @import partials/_base.sass
7
+ @import config/_base.sass
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alexcabrera-graphpaper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.12
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Cabrera
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-09-05 00:00:00 -07:00
12
+ date: 2009-09-12 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -35,18 +35,17 @@ files:
35
35
  - stylesheets/graphpaper/modules/_grid.sass
36
36
  - stylesheets/graphpaper/modules/_reset.sass
37
37
  - stylesheets/graphpaper/modules/_typography.sass
38
- - templates/project/_config.sass
39
38
  - templates/project/common/_footer.sass
40
39
  - templates/project/common/_header.sass
41
40
  - templates/project/common/_typography.sass
41
+ - templates/project/config/_base.sass
42
+ - templates/project/config/_settings.sass
42
43
  - templates/project/ie.sass
43
44
  - templates/project/manifest.rb
44
- - templates/project/partials/_base.sass
45
45
  - templates/project/print.sass
46
46
  - templates/project/screen.sass
47
47
  has_rdoc: true
48
48
  homepage: http://github.com/alexcabrera/graphpaper
49
- licenses:
50
49
  post_install_message:
51
50
  rdoc_options:
52
51
  - --charset=UTF-8
@@ -67,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
66
  requirements: []
68
67
 
69
68
  rubyforge_project:
70
- rubygems_version: 1.3.5
69
+ rubygems_version: 1.2.0
71
70
  signing_key:
72
71
  specification_version: 2
73
72
  summary: A Sass library for use with the Compass stylesheet authoring framework.