gridgraphy 0.0.2

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.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +1 -0
  7. data/gridgraphy.gemspec +21 -0
  8. data/lib/gridgraphy/version.rb +3 -0
  9. data/lib/gridgraphy.rb +9 -0
  10. data/stylesheets/_gridgraphy.sass +2 -0
  11. data/stylesheets/gridgraphy/_scaffolding.sass +34 -0
  12. data/stylesheets/gridgraphy/config/_config.sass +12 -0
  13. data/stylesheets/gridgraphy/grids/base/_functions.sass +52 -0
  14. data/stylesheets/gridgraphy/grids/base/_mixins.sass +137 -0
  15. data/stylesheets/gridgraphy/grids/types/center/.DS_Store +0 -0
  16. data/stylesheets/gridgraphy/grids/types/center/_functions.sass +19 -0
  17. data/stylesheets/gridgraphy/grids/types/center/_mixins.sass +37 -0
  18. data/stylesheets/gridgraphy/grids/types/full/.DS_Store +0 -0
  19. data/stylesheets/gridgraphy/grids/types/full/_functions.sass +19 -0
  20. data/stylesheets/gridgraphy/grids/types/full/_mixins.sass +35 -0
  21. data/stylesheets/gridgraphy/grids/types/left/.DS_Store +0 -0
  22. data/stylesheets/gridgraphy/grids/types/left/_functions.sass +19 -0
  23. data/stylesheets/gridgraphy/grids/types/left/_mixins.sass +36 -0
  24. data/stylesheets/gridgraphy/grids/types/right/_functions.sass +19 -0
  25. data/stylesheets/gridgraphy/grids/types/right/_mixins.sass +36 -0
  26. data/stylesheets/gridgraphy/utils/.DS_Store +0 -0
  27. data/stylesheets/gridgraphy/utils/_functions.sass +2 -0
  28. data/stylesheets/gridgraphy/utils/_mixins.sass +9 -0
  29. data/templates/example/examples/center/config/_config.sass +13 -0
  30. data/templates/example/examples/center/index.html +121 -0
  31. data/templates/example/examples/center/screen.sass +2 -0
  32. data/templates/example/examples/full/config/_config.sass +13 -0
  33. data/templates/example/examples/full/index.html +121 -0
  34. data/templates/example/examples/full/screen.sass +2 -0
  35. data/templates/example/examples/left/config/_config.sass +13 -0
  36. data/templates/example/examples/left/index.html +121 -0
  37. data/templates/example/examples/left/screen.sass +2 -0
  38. data/templates/example/examples/right/config/_config.sass +13 -0
  39. data/templates/example/examples/right/index.html +121 -0
  40. data/templates/example/examples/right/screen.sass +2 -0
  41. data/templates/example/manifest.rb +29 -0
  42. data/templates/scaffolding/config/_config.sass +13 -0
  43. data/templates/scaffolding/manifest.rb +16 -0
  44. data/templates/scaffolding/screen.sass +2 -0
  45. metadata +116 -0
metadata ADDED
@@ -0,0 +1,116 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gridgraphy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Jason Bellamy
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-05-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: compass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.12.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.12.2
27
+ - !ruby/object:Gem::Dependency
28
+ name: sass
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: 3.2.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: 3.2.0
41
+ description: An unobtrusive Compass/SASS grid framework
42
+ email:
43
+ - j@sonbellamy.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - gridgraphy.gemspec
54
+ - lib/gridgraphy.rb
55
+ - lib/gridgraphy/version.rb
56
+ - stylesheets/_gridgraphy.sass
57
+ - stylesheets/gridgraphy/_scaffolding.sass
58
+ - stylesheets/gridgraphy/config/_config.sass
59
+ - stylesheets/gridgraphy/grids/base/_functions.sass
60
+ - stylesheets/gridgraphy/grids/base/_mixins.sass
61
+ - stylesheets/gridgraphy/grids/types/center/.DS_Store
62
+ - stylesheets/gridgraphy/grids/types/center/_functions.sass
63
+ - stylesheets/gridgraphy/grids/types/center/_mixins.sass
64
+ - stylesheets/gridgraphy/grids/types/full/.DS_Store
65
+ - stylesheets/gridgraphy/grids/types/full/_functions.sass
66
+ - stylesheets/gridgraphy/grids/types/full/_mixins.sass
67
+ - stylesheets/gridgraphy/grids/types/left/.DS_Store
68
+ - stylesheets/gridgraphy/grids/types/left/_functions.sass
69
+ - stylesheets/gridgraphy/grids/types/left/_mixins.sass
70
+ - stylesheets/gridgraphy/grids/types/right/_functions.sass
71
+ - stylesheets/gridgraphy/grids/types/right/_mixins.sass
72
+ - stylesheets/gridgraphy/utils/.DS_Store
73
+ - stylesheets/gridgraphy/utils/_functions.sass
74
+ - stylesheets/gridgraphy/utils/_mixins.sass
75
+ - templates/example/examples/center/config/_config.sass
76
+ - templates/example/examples/center/index.html
77
+ - templates/example/examples/center/screen.sass
78
+ - templates/example/examples/full/config/_config.sass
79
+ - templates/example/examples/full/index.html
80
+ - templates/example/examples/full/screen.sass
81
+ - templates/example/examples/left/config/_config.sass
82
+ - templates/example/examples/left/index.html
83
+ - templates/example/examples/left/screen.sass
84
+ - templates/example/examples/right/config/_config.sass
85
+ - templates/example/examples/right/index.html
86
+ - templates/example/examples/right/screen.sass
87
+ - templates/example/manifest.rb
88
+ - templates/scaffolding/config/_config.sass
89
+ - templates/scaffolding/manifest.rb
90
+ - templates/scaffolding/screen.sass
91
+ homepage: https://github.com/jasonbellamy/gridgraphy
92
+ licenses:
93
+ - MIT
94
+ metadata: {}
95
+ post_install_message:
96
+ rdoc_options: []
97
+ require_paths:
98
+ - lib
99
+ required_ruby_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ required_rubygems_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - '>='
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ requirements: []
110
+ rubyforge_project:
111
+ rubygems_version: 2.0.3
112
+ signing_key:
113
+ specification_version: 4
114
+ summary: GridGraphy is an open source grid framework that stays out of the way and
115
+ lets you get things done "your way"
116
+ test_files: []