toolkit 0.1

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 (46) hide show
  1. data/lib/toolkit.rb +6 -0
  2. data/stylesheets/_toolkit.scss +24 -0
  3. data/stylesheets/toolkit/_border-box.scss +7 -0
  4. data/stylesheets/toolkit/_fluid-media.scss +36 -0
  5. data/stylesheets/toolkit/_progressive-enhancement.scss +57 -0
  6. data/templates/project/embeds.respond.js +37 -0
  7. data/templates/project/hammer.js +731 -0
  8. data/templates/project/ie.scss +28 -0
  9. data/templates/project/loader.js +4 -0
  10. data/templates/project/manifest.rb +68 -0
  11. data/templates/project/modernizr-2.5.3.js +726 -0
  12. data/templates/project/partials/design/_design.scss +9 -0
  13. data/templates/project/partials/design/_ie-design.scss +9 -0
  14. data/templates/project/partials/design/_print-design.scss +9 -0
  15. data/templates/project/partials/global/_base.scss +25 -0
  16. data/templates/project/partials/global/_extendables.scss +6 -0
  17. data/templates/project/partials/global/_functions.scss +5 -0
  18. data/templates/project/partials/global/_mixins.scss +5 -0
  19. data/templates/project/partials/global/_variables.scss +5 -0
  20. data/templates/project/partials/layout/_ie-layout.scss +9 -0
  21. data/templates/project/partials/layout/_layout.scss +9 -0
  22. data/templates/project/partials/layout/_print-layout.scss +9 -0
  23. data/templates/project/partials/styleguide/_style-guide.scss +10 -0
  24. data/templates/project/print.scss +28 -0
  25. data/templates/project/style.scss +27 -0
  26. data/templates/respond-to/embeds.respond.js +37 -0
  27. data/templates/respond-to/hammer.js +731 -0
  28. data/templates/respond-to/ie.scss +28 -0
  29. data/templates/respond-to/loader.js +4 -0
  30. data/templates/respond-to/manifest.rb +69 -0
  31. data/templates/respond-to/modernizr-2.5.3.js +726 -0
  32. data/templates/respond-to/partials/design/_design.scss +9 -0
  33. data/templates/respond-to/partials/design/_ie-design.scss +9 -0
  34. data/templates/respond-to/partials/design/_print-design.scss +9 -0
  35. data/templates/respond-to/partials/global/_base.scss +25 -0
  36. data/templates/respond-to/partials/global/_extendables.scss +6 -0
  37. data/templates/respond-to/partials/global/_functions.scss +5 -0
  38. data/templates/respond-to/partials/global/_mixins.scss +5 -0
  39. data/templates/respond-to/partials/global/_variables.scss +5 -0
  40. data/templates/respond-to/partials/layout/_ie-layout.scss +9 -0
  41. data/templates/respond-to/partials/layout/_layout.scss +9 -0
  42. data/templates/respond-to/partials/layout/_print-layout.scss +9 -0
  43. data/templates/respond-to/partials/styleguide/_style-guide.scss +10 -0
  44. data/templates/respond-to/print.scss +28 -0
  45. data/templates/respond-to/style.scss +27 -0
  46. metadata +151 -0
@@ -0,0 +1,9 @@
1
+ ////////////////////////
2
+ // Design Partials
3
+ //
4
+ // Seperate your layout from design, building sub folders and partials
5
+ // in this folder, with everything being imported, in casading order,
6
+ // into this file.
7
+ //
8
+ // All styling, non box model properties go here
9
+ ////////////////////////
@@ -0,0 +1,9 @@
1
+ ////////////////////////
2
+ // IE Design Partials
3
+ //
4
+ // Seperate your layout from design, building sub folders and partials
5
+ // in this folder, with everything being imported, in casading order,
6
+ // into this file. This is for Internet Explorer's Use.
7
+ //
8
+ // All styling, non box model properties go here
9
+ ////////////////////////
@@ -0,0 +1,9 @@
1
+ ////////////////////////
2
+ // Print Design Partials
3
+ //
4
+ // Seperate your layout from design, building sub folders and partials
5
+ // in this folder, with everything being imported, in casading order,
6
+ // into this file. This is for Printed files.
7
+ //
8
+ // All styling, non box model properties go here
9
+ ////////////////////////
@@ -0,0 +1,25 @@
1
+ ////////////////////////
2
+ // Base Partials
3
+ //
4
+ // These files will be shared across all three of your output
5
+ // CSS files. Generally included here are only Compass Extension
6
+ // imports and imports for variables, functions, mixins, and extendables.
7
+ ////////////////////////
8
+
9
+ ////////////////////////
10
+ // Compass Imports
11
+ ////////////////////////
12
+
13
+ ////////////////////////
14
+ // Compass Extensions
15
+ ////////////////////////
16
+ @import 'toolkit';
17
+ @import 'respond-to';
18
+
19
+ ////////////////////////
20
+ // Private Imports
21
+ ////////////////////////
22
+ @import 'variables';
23
+ @import 'functions';
24
+ @import 'mixins';
25
+ @import 'extendables';
@@ -0,0 +1,6 @@
1
+ ////////////////////////
2
+ // Extendables Partials
3
+ //
4
+ // All of your extendable classes, ids, and silent extendables
5
+ // should go in this file.
6
+ ////////////////////////
@@ -0,0 +1,5 @@
1
+ ////////////////////////
2
+ // Functions Partials
3
+ //
4
+ // All of your functions should go in this file.
5
+ ////////////////////////
@@ -0,0 +1,5 @@
1
+ ////////////////////////
2
+ // Mixins Partials
3
+ //
4
+ // All of your mixins should go in this file.
5
+ ////////////////////////
@@ -0,0 +1,5 @@
1
+ ////////////////////////
2
+ // Variables Partials
3
+ //
4
+ // All of your variables should go in this file.
5
+ ////////////////////////
@@ -0,0 +1,9 @@
1
+ ////////////////////////
2
+ // IE Layout Partials
3
+ //
4
+ // Seperate your layout from design, building sub folders and partials
5
+ // in this folder, with everything being imported, in casading order,
6
+ // into this file. This is for Internet Explorer's Use
7
+ //
8
+ // All box model properties go here
9
+ ////////////////////////
@@ -0,0 +1,9 @@
1
+ ////////////////////////
2
+ // Layout Partials
3
+ //
4
+ // Seperate your layout from design, building sub folders and partials
5
+ // in this folder, with everything being imported, in casading order,
6
+ // into this file.
7
+ //
8
+ // All box model properties go here
9
+ ////////////////////////
@@ -0,0 +1,9 @@
1
+ ////////////////////////
2
+ // Print Layout Partials
3
+ //
4
+ // Seperate your layout from design, building sub folders and partials
5
+ // in this folder, with everything being imported, in casading order,
6
+ // into this file. This is for Print files.
7
+ //
8
+ // All box model properties go here
9
+ ////////////////////////
@@ -0,0 +1,10 @@
1
+ ////////////////////////
2
+ // Style Guide Partials
3
+ //
4
+ // Write a Style Guide for your website, building sub folders and partials
5
+ // in this folder, with everything being imported, in casading order,
6
+ // into this file.
7
+ //
8
+ // All Style Guide selectors should go in here, regardless of layout or design
9
+ // (but separating the two in here is a good idea).
10
+ ////////////////////////
@@ -0,0 +1,28 @@
1
+ ////////////////////////
2
+ // Print File
3
+ //
4
+ // This file gets turned into style.css. This file should really
5
+ // hold nothing except for imports of your base, layout, and design
6
+ // partials, plus the mixins required to kickstart Aura and Style Guide.
7
+ // This file is styles specific to Printed files.
8
+ ////////////////////////
9
+
10
+ ////////////////////////
11
+ // Base Import
12
+ ////////////////////////
13
+ @import 'partials/global/base';
14
+
15
+ ////////////////////////
16
+ // Import Style Guide
17
+ ////////////////////////
18
+ @import 'partials/styleguide/style-guide';
19
+
20
+ ////////////////////////
21
+ // Import Layout
22
+ ////////////////////////
23
+ @import 'partials/layout/print-layout';
24
+
25
+ ////////////////////////
26
+ // Import Design
27
+ ////////////////////////
28
+ @import 'partials/design/print-design';
@@ -0,0 +1,27 @@
1
+ ////////////////////////
2
+ // Style File
3
+ //
4
+ // This file gets turned into style.css. This file should really
5
+ // hold nothing except for imports of your base, layout, and design
6
+ // partials, plus the mixins required to kickstart Aura and Style Guide.
7
+ ////////////////////////
8
+
9
+ ////////////////////////
10
+ // Base Import
11
+ ////////////////////////
12
+ @import 'partials/global/base';
13
+
14
+ ////////////////////////
15
+ // Import Style Guide
16
+ ////////////////////////
17
+ @import 'partials/styleguide/style-guide';
18
+
19
+ ////////////////////////
20
+ // Import Layout
21
+ ////////////////////////
22
+ @import 'partials/layout/layout';
23
+
24
+ ////////////////////////
25
+ // Import Design
26
+ ////////////////////////
27
+ @import 'partials/design/design';
metadata ADDED
@@ -0,0 +1,151 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: toolkit
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ version: "0.1"
9
+ platform: ruby
10
+ authors:
11
+ - Sam Richard
12
+ - Mason Wendell
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2011-06-30 00:00:00 -04:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: compass
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ - 12
30
+ - 1
31
+ version: 0.12.1
32
+ type: :runtime
33
+ version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
35
+ name: susy
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ segments:
42
+ - 1
43
+ - 0
44
+ - rc
45
+ - 0
46
+ version: 1.0.rc.0
47
+ type: :runtime
48
+ version_requirements: *id002
49
+ - !ruby/object:Gem::Dependency
50
+ name: respond-to
51
+ prerelease: false
52
+ requirement: &id003 !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ segments:
57
+ - 2
58
+ - 0
59
+ - 2
60
+ version: 2.0.2
61
+ type: :runtime
62
+ version_requirements: *id003
63
+ description: Toolkit of good things for Responsive Web Design
64
+ email:
65
+ - sam@snug.ug
66
+ - mason@zivtech.com
67
+ executables: []
68
+
69
+ extensions: []
70
+
71
+ extra_rdoc_files: []
72
+
73
+ files:
74
+ - lib/toolkit.rb
75
+ - stylesheets/_toolkit.scss
76
+ - stylesheets/toolkit/_border-box.scss
77
+ - stylesheets/toolkit/_fluid-media.scss
78
+ - stylesheets/toolkit/_progressive-enhancement.scss
79
+ - templates/project/embeds.respond.js
80
+ - templates/project/hammer.js
81
+ - templates/project/ie.scss
82
+ - templates/project/loader.js
83
+ - templates/project/manifest.rb
84
+ - templates/project/modernizr-2.5.3.js
85
+ - templates/project/partials/design/_design.scss
86
+ - templates/project/partials/design/_ie-design.scss
87
+ - templates/project/partials/design/_print-design.scss
88
+ - templates/project/partials/global/_base.scss
89
+ - templates/project/partials/global/_extendables.scss
90
+ - templates/project/partials/global/_functions.scss
91
+ - templates/project/partials/global/_mixins.scss
92
+ - templates/project/partials/global/_variables.scss
93
+ - templates/project/partials/layout/_ie-layout.scss
94
+ - templates/project/partials/layout/_layout.scss
95
+ - templates/project/partials/layout/_print-layout.scss
96
+ - templates/project/partials/styleguide/_style-guide.scss
97
+ - templates/project/print.scss
98
+ - templates/project/style.scss
99
+ - templates/respond-to/embeds.respond.js
100
+ - templates/respond-to/hammer.js
101
+ - templates/respond-to/ie.scss
102
+ - templates/respond-to/loader.js
103
+ - templates/respond-to/manifest.rb
104
+ - templates/respond-to/modernizr-2.5.3.js
105
+ - templates/respond-to/partials/design/_design.scss
106
+ - templates/respond-to/partials/design/_ie-design.scss
107
+ - templates/respond-to/partials/design/_print-design.scss
108
+ - templates/respond-to/partials/global/_base.scss
109
+ - templates/respond-to/partials/global/_extendables.scss
110
+ - templates/respond-to/partials/global/_functions.scss
111
+ - templates/respond-to/partials/global/_mixins.scss
112
+ - templates/respond-to/partials/global/_variables.scss
113
+ - templates/respond-to/partials/layout/_ie-layout.scss
114
+ - templates/respond-to/partials/layout/_layout.scss
115
+ - templates/respond-to/partials/layout/_print-layout.scss
116
+ - templates/respond-to/partials/styleguide/_style-guide.scss
117
+ - templates/respond-to/print.scss
118
+ - templates/respond-to/style.scss
119
+ has_rdoc: true
120
+ homepage: https://github.com/Snugug/toolkit
121
+ licenses: []
122
+
123
+ post_install_message:
124
+ rdoc_options: []
125
+
126
+ require_paths:
127
+ - lib
128
+ required_ruby_version: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ segments:
133
+ - 0
134
+ version: "0"
135
+ required_rubygems_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ segments:
140
+ - 1
141
+ - 2
142
+ version: "1.2"
143
+ requirements: []
144
+
145
+ rubyforge_project: toolkit
146
+ rubygems_version: 1.3.6
147
+ signing_key:
148
+ specification_version: 3
149
+ summary: RWD Toolkit
150
+ test_files: []
151
+