rwd-kickstart 1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. data/lib/rwd-kickstart.rb +6 -0
  2. data/templates/project/embeds.respond.js +37 -0
  3. data/templates/project/hammer.js +731 -0
  4. data/templates/project/ie.scss +28 -0
  5. data/templates/project/loader.js +4 -0
  6. data/templates/project/manifest.rb +68 -0
  7. data/templates/project/modernizr-2.5.3.js +726 -0
  8. data/templates/project/partials/design/_design.scss +9 -0
  9. data/templates/project/partials/design/_ie-design.scss +9 -0
  10. data/templates/project/partials/design/_print-design.scss +9 -0
  11. data/templates/project/partials/global/_base.scss +34 -0
  12. data/templates/project/partials/global/_extendables.scss +6 -0
  13. data/templates/project/partials/global/_functions.scss +5 -0
  14. data/templates/project/partials/global/_mixins.scss +5 -0
  15. data/templates/project/partials/global/_variables.scss +5 -0
  16. data/templates/project/partials/layout/_ie-layout.scss +9 -0
  17. data/templates/project/partials/layout/_layout.scss +9 -0
  18. data/templates/project/partials/layout/_print-layout.scss +9 -0
  19. data/templates/project/partials/styleguide/_style-guide.scss +10 -0
  20. data/templates/project/print.scss +28 -0
  21. data/templates/project/style.scss +27 -0
  22. data/templates/respond-to/embeds.respond.js +37 -0
  23. data/templates/respond-to/hammer.js +731 -0
  24. data/templates/respond-to/ie.scss +28 -0
  25. data/templates/respond-to/loader.js +4 -0
  26. data/templates/respond-to/manifest.rb +69 -0
  27. data/templates/respond-to/modernizr-2.5.3.js +726 -0
  28. data/templates/respond-to/partials/design/_design.scss +9 -0
  29. data/templates/respond-to/partials/design/_ie-design.scss +9 -0
  30. data/templates/respond-to/partials/design/_print-design.scss +9 -0
  31. data/templates/respond-to/partials/global/_base.scss +34 -0
  32. data/templates/respond-to/partials/global/_extendables.scss +6 -0
  33. data/templates/respond-to/partials/global/_functions.scss +5 -0
  34. data/templates/respond-to/partials/global/_mixins.scss +5 -0
  35. data/templates/respond-to/partials/global/_variables.scss +5 -0
  36. data/templates/respond-to/partials/layout/_ie-layout.scss +9 -0
  37. data/templates/respond-to/partials/layout/_layout.scss +9 -0
  38. data/templates/respond-to/partials/layout/_print-layout.scss +9 -0
  39. data/templates/respond-to/partials/styleguide/_style-guide.scss +10 -0
  40. data/templates/respond-to/print.scss +28 -0
  41. data/templates/respond-to/style.scss +27 -0
  42. metadata +146 -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,34 @@
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
+ @import 'compass';
13
+
14
+ ////////////////////////
15
+ // Compass Extensions
16
+ ////////////////////////
17
+ @import 'susy';
18
+ @import 'respond-to';
19
+
20
+ ////////////////////////
21
+ // Private Imports
22
+ ////////////////////////
23
+ @import 'variables';
24
+ @import 'functions';
25
+ @import 'mixins';
26
+ @import 'extendables';
27
+
28
+ ////////////////////////
29
+ // Cheat at CSS
30
+ //
31
+ // Applies a natural box layout modeul to all elements.
32
+ // From http://paulirish.com/2012/box-sizing-border-box-ftw/
33
+ ////////////////////////
34
+ * { @include box-sizing('border-box'); }
@@ -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,146 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rwd-kickstart
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 0
8
+ version: "1.0"
9
+ platform: ruby
10
+ authors:
11
+ - Sam Richard
12
+ - Mason Wendell
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2011-06-19 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
+ version: "2.0"
60
+ type: :runtime
61
+ version_requirements: *id003
62
+ description: Responsive Framework utilizing Susy and Modular Scale.
63
+ email:
64
+ - sam@snug.ug
65
+ - mason@zivtech.com
66
+ executables: []
67
+
68
+ extensions: []
69
+
70
+ extra_rdoc_files: []
71
+
72
+ files:
73
+ - lib/rwd-kickstart.rb
74
+ - templates/project/embeds.respond.js
75
+ - templates/project/hammer.js
76
+ - templates/project/ie.scss
77
+ - templates/project/loader.js
78
+ - templates/project/manifest.rb
79
+ - templates/project/modernizr-2.5.3.js
80
+ - templates/project/partials/design/_design.scss
81
+ - templates/project/partials/design/_ie-design.scss
82
+ - templates/project/partials/design/_print-design.scss
83
+ - templates/project/partials/global/_base.scss
84
+ - templates/project/partials/global/_extendables.scss
85
+ - templates/project/partials/global/_functions.scss
86
+ - templates/project/partials/global/_mixins.scss
87
+ - templates/project/partials/global/_variables.scss
88
+ - templates/project/partials/layout/_ie-layout.scss
89
+ - templates/project/partials/layout/_layout.scss
90
+ - templates/project/partials/layout/_print-layout.scss
91
+ - templates/project/partials/styleguide/_style-guide.scss
92
+ - templates/project/print.scss
93
+ - templates/project/style.scss
94
+ - templates/respond-to/embeds.respond.js
95
+ - templates/respond-to/hammer.js
96
+ - templates/respond-to/ie.scss
97
+ - templates/respond-to/loader.js
98
+ - templates/respond-to/manifest.rb
99
+ - templates/respond-to/modernizr-2.5.3.js
100
+ - templates/respond-to/partials/design/_design.scss
101
+ - templates/respond-to/partials/design/_ie-design.scss
102
+ - templates/respond-to/partials/design/_print-design.scss
103
+ - templates/respond-to/partials/global/_base.scss
104
+ - templates/respond-to/partials/global/_extendables.scss
105
+ - templates/respond-to/partials/global/_functions.scss
106
+ - templates/respond-to/partials/global/_mixins.scss
107
+ - templates/respond-to/partials/global/_variables.scss
108
+ - templates/respond-to/partials/layout/_ie-layout.scss
109
+ - templates/respond-to/partials/layout/_layout.scss
110
+ - templates/respond-to/partials/layout/_print-layout.scss
111
+ - templates/respond-to/partials/styleguide/_style-guide.scss
112
+ - templates/respond-to/print.scss
113
+ - templates/respond-to/style.scss
114
+ has_rdoc: true
115
+ homepage: https://github.com/Snugug/Aura
116
+ licenses: []
117
+
118
+ post_install_message:
119
+ rdoc_options: []
120
+
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ segments:
128
+ - 0
129
+ version: "0"
130
+ required_rubygems_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ segments:
135
+ - 1
136
+ - 2
137
+ version: "1.2"
138
+ requirements: []
139
+
140
+ rubyforge_project: rwd-kickstart
141
+ rubygems_version: 1.3.6
142
+ signing_key:
143
+ specification_version: 3
144
+ summary: Responsive Framework for Compass.
145
+ test_files: []
146
+