toolkit 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,28 @@
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
+ // Toolkit include @import 'compass' so you don't need to.
13
+ ////////////////////////
14
+
15
+ ////////////////////////
16
+ // Compass Extensions
17
+ ////////////////////////
18
+ @import 'toolkit';
19
+ @import 'singularitygs';
20
+ @import 'respond-to';
21
+
22
+ ////////////////////////
23
+ // Private Imports
24
+ ////////////////////////
25
+ @import 'variables';
26
+ @import 'functions';
27
+ @import 'mixins';
28
+ @import 'extendables';
@@ -0,0 +1,71 @@
1
+ description "Responsive Web Design Kickstart"
2
+
3
+ # Stylesheets
4
+ file '../shared/style.scss', :like => :stylesheet, :media => 'screen, projection', :to => 'style.scss'
5
+
6
+ file '_base.scss', :like => :stylesheet, :to => 'partials/global/_base.scss'
7
+ file '../shared/_variables.scss', :like => :stylesheet, :to => 'partials/global/_variables.scss'
8
+ file '../shared/_functions.scss', :like => :stylesheet, :to => 'partials/global/_functions.scss'
9
+ file '../shared/_mixins.scss', :like => :stylesheet, :to => 'partials/global/_mixins.scss'
10
+ file '../shared/_extendables.scss', :like => :stylesheet, :to => 'partials/global/_extendables.scss'
11
+
12
+ file '../shared/_style-guide.scss', :like => :stylesheet, :to => 'partials/styleguide/_style-guide.scss'
13
+
14
+ file '../shared/_layout.scss', :like => :stylesheet, :to => 'partials/layout/_layout.scss'
15
+ file '../shared/_ie-layout.scss', :like => :stylesheet, :to => 'partials/layout/_ie-layout.scss'
16
+ file '../shared/_print-layout.scss', :like => :stylesheet, :to => 'partials/layout/_print-layout.scss'
17
+
18
+ file '../shared/_design.scss', :like => :stylesheet, :to => 'partials/design/_design.scss'
19
+ file '../shared/_ie-design.scss', :like => :stylesheet, :to => 'partials/design/_ie-design.scss'
20
+ file '../shared/_print-design.scss', :like => :stylesheet, :to => 'partials/design/_print-design.scss'
21
+
22
+ file '../shared/print.scss', :like => :stylesheet, :media => 'print', :to => 'print.scss'
23
+ file '../shared/ie.scss', :like => :stylesheet, :media => 'screen, projection', :condition => "lt IE 8", :to => 'ie.scss'
24
+
25
+ # JavaScript
26
+ file '../shared/hammer.js', :like => :javascript, :to => 'hammer.js'
27
+ file '../shared/loader.js', :like => :javascript, :to => 'loader.js'
28
+ file '../shared/modernizr-2.5.3.js', :like => :javascript, :to => 'modernizr-2.5.3.js'
29
+
30
+ help %Q{
31
+ Please contact Sam Richard or Mason Wendell with questions:
32
+
33
+ sam@snug.ug
34
+ mason@zivtech.com
35
+ }
36
+
37
+ welcome_message %Q{
38
+
39
+ Responsive Web Design Kickstart
40
+
41
+ Welcome to the Responsive Web Design Kickstart gem! Provided are the basic tools needed to kickstart a custom Responsive Web Design solution tailor made to your needs! Remember, tools and best practices are always changing, so keep up to date!
42
+
43
+ The following is included in this build:
44
+ Compass Extensions:
45
+ * Singularity
46
+ * Toolkit
47
+ * Respond-to
48
+
49
+ JavaScript:
50
+ * Modernizr Custom Build with all Standard features of 2.3.5 except html5shiv w/printshiv or Media Queries. Build your own from http://modernizr.com/download/ when you are ready for production
51
+ * Loader.js custom JavaScript file for holding conditional asset loading scripts thanks to Modernizr's yepnope (http://yepnopejs.com/). Comes with yepnope code for loading in Hammer.js, just make sure the path is correct from root.. Ready for production, but remember to minify and gzip!
52
+ * Hammer.js (http://eightmedia.github.com/hammer.js/) for awesome touch events. Ready for production, but remember to minify and gzip!
53
+
54
+ Include the following in your <head> tag:
55
+
56
+ <meta content='width=device-width, initial-scale=1.0' name='viewport' />
57
+ <meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
58
+ <!--[if lt IE 9 ]> <script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.2/CFInstall.min.js"></script><script>window.attachEvent("onload",function(){CFInstall.check({mode:"overlay"})})</script> <![endif]-->
59
+ <!-- CSS -->
60
+ <link href='path/to/css/style.css?v=1' rel='stylesheet' />
61
+ <!-- All JavaScript at the bottom, except for Modernizr and Respond/Selectivizr for IE 8 and Below. -->
62
+ <script src='path/to/js/modernizr-2.5.3.js'></script>
63
+
64
+ Include the following, and all other JavaScript, including any JavaScript frameworks you may be using like jQuery, right before your closing </body> tag:
65
+
66
+ <!-- Javascript at the bottom for fast page loading -->
67
+ <script src='path/to/js/loader.js'></script>
68
+
69
+
70
+ }
71
+
@@ -0,0 +1,28 @@
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
+ // Toolkit include @import 'compass' so you don't need to.
13
+ ////////////////////////
14
+
15
+ ////////////////////////
16
+ // Compass Extensions
17
+ ////////////////////////
18
+ @import 'toolkit';
19
+ @import 'susy';
20
+ @import 'respond-to';
21
+
22
+ ////////////////////////
23
+ // Private Imports
24
+ ////////////////////////
25
+ @import 'variables';
26
+ @import 'functions';
27
+ @import 'mixins';
28
+ @import 'extendables';
@@ -0,0 +1,71 @@
1
+ description "Responsive Web Design Kickstart"
2
+
3
+ # Stylesheets
4
+ file '../shared/style.scss', :like => :stylesheet, :media => 'screen, projection', :to => 'style.scss'
5
+
6
+ file '_base.scss', :like => :stylesheet, :to => 'partials/global/_base.scss'
7
+ file '../shared/_variables.scss', :like => :stylesheet, :to => 'partials/global/_variables.scss'
8
+ file '../shared/_functions.scss', :like => :stylesheet, :to => 'partials/global/_functions.scss'
9
+ file '../shared/_mixins.scss', :like => :stylesheet, :to => 'partials/global/_mixins.scss'
10
+ file '../shared/_extendables.scss', :like => :stylesheet, :to => 'partials/global/_extendables.scss'
11
+
12
+ file '../shared/_style-guide.scss', :like => :stylesheet, :to => 'partials/styleguide/_style-guide.scss'
13
+
14
+ file '../shared/_layout.scss', :like => :stylesheet, :to => 'partials/layout/_layout.scss'
15
+ file '../shared/_ie-layout.scss', :like => :stylesheet, :to => 'partials/layout/_ie-layout.scss'
16
+ file '../shared/_print-layout.scss', :like => :stylesheet, :to => 'partials/layout/_print-layout.scss'
17
+
18
+ file '../shared/_design.scss', :like => :stylesheet, :to => 'partials/design/_design.scss'
19
+ file '../shared/_ie-design.scss', :like => :stylesheet, :to => 'partials/design/_ie-design.scss'
20
+ file '../shared/_print-design.scss', :like => :stylesheet, :to => 'partials/design/_print-design.scss'
21
+
22
+ file '../shared/print.scss', :like => :stylesheet, :media => 'print', :to => 'print.scss'
23
+ file '../shared/ie.scss', :like => :stylesheet, :media => 'screen, projection', :condition => "lt IE 8", :to => 'ie.scss'
24
+
25
+ # JavaScript
26
+ file '../shared/hammer.js', :like => :javascript, :to => 'hammer.js'
27
+ file '../shared/loader.js', :like => :javascript, :to => 'loader.js'
28
+ file '../shared/modernizr-2.5.3.js', :like => :javascript, :to => 'modernizr-2.5.3.js'
29
+
30
+ help %Q{
31
+ Please contact Sam Richard or Mason Wendell with questions:
32
+
33
+ sam@snug.ug
34
+ mason@zivtech.com
35
+ }
36
+
37
+ welcome_message %Q{
38
+
39
+ Responsive Web Design Kickstart
40
+
41
+ Welcome to the Responsive Web Design Kickstart gem! Provided are the basic tools needed to kickstart a custom Responsive Web Design solution tailor made to your needs! Remember, tools and best practices are always changing, so keep up to date!
42
+
43
+ The following is included in this build:
44
+ Compass Extensions:
45
+ * Susy
46
+ * Toolkit
47
+ * Respond-to
48
+
49
+ JavaScript:
50
+ * Modernizr Custom Build with all Standard features of 2.3.5 except html5shiv w/printshiv or Media Queries. Build your own from http://modernizr.com/download/ when you are ready for production
51
+ * Loader.js custom JavaScript file for holding conditional asset loading scripts thanks to Modernizr's yepnope (http://yepnopejs.com/). Comes with yepnope code for loading in Hammer.js, just make sure the path is correct from root.. Ready for production, but remember to minify and gzip!
52
+ * Hammer.js (http://eightmedia.github.com/hammer.js/) for awesome touch events. Ready for production, but remember to minify and gzip!
53
+
54
+ Include the following in your <head> tag:
55
+
56
+ <meta content='width=device-width, initial-scale=1.0' name='viewport' />
57
+ <meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
58
+ <!--[if lt IE 9 ]> <script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.2/CFInstall.min.js"></script><script>window.attachEvent("onload",function(){CFInstall.check({mode:"overlay"})})</script> <![endif]-->
59
+ <!-- CSS -->
60
+ <link href='path/to/css/style.css?v=1' rel='stylesheet' />
61
+ <!-- All JavaScript at the bottom, except for Modernizr and Respond/Selectivizr for IE 8 and Below. -->
62
+ <script src='path/to/js/modernizr-2.5.3.js'></script>
63
+
64
+ Include the following, and all other JavaScript, including any JavaScript frameworks you may be using like jQuery, right before your closing </body> tag:
65
+
66
+ <!-- Javascript at the bottom for fast page loading -->
67
+ <script src='path/to/js/loader.js'></script>
68
+
69
+
70
+ }
71
+
@@ -0,0 +1,28 @@
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
+ // Toolkit include @import 'compass' so you don't need to.
13
+ ////////////////////////
14
+
15
+ ////////////////////////
16
+ // Compass Extensions
17
+ ////////////////////////
18
+ @import 'toolkit';
19
+ @import 'susy';
20
+ @import 'breakpoint';
21
+
22
+ ////////////////////////
23
+ // Private Imports
24
+ ////////////////////////
25
+ @import 'variables';
26
+ @import 'functions';
27
+ @import 'mixins';
28
+ @import 'extendables';
@@ -0,0 +1,71 @@
1
+ description "Responsive Web Design Kickstart"
2
+
3
+ # Stylesheets
4
+ file '../shared/style.scss', :like => :stylesheet, :media => 'screen, projection', :to => 'style.scss'
5
+
6
+ file '_base.scss', :like => :stylesheet, :to => 'partials/global/_base.scss'
7
+ file '../shared/_variables.scss', :like => :stylesheet, :to => 'partials/global/_variables.scss'
8
+ file '../shared/_functions.scss', :like => :stylesheet, :to => 'partials/global/_functions.scss'
9
+ file '../shared/_mixins.scss', :like => :stylesheet, :to => 'partials/global/_mixins.scss'
10
+ file '../shared/_extendables.scss', :like => :stylesheet, :to => 'partials/global/_extendables.scss'
11
+
12
+ file '../shared/_style-guide.scss', :like => :stylesheet, :to => 'partials/styleguide/_style-guide.scss'
13
+
14
+ file '../shared/_layout.scss', :like => :stylesheet, :to => 'partials/layout/_layout.scss'
15
+ file '../shared/_ie-layout.scss', :like => :stylesheet, :to => 'partials/layout/_ie-layout.scss'
16
+ file '../shared/_print-layout.scss', :like => :stylesheet, :to => 'partials/layout/_print-layout.scss'
17
+
18
+ file '../shared/_design.scss', :like => :stylesheet, :to => 'partials/design/_design.scss'
19
+ file '../shared/_ie-design.scss', :like => :stylesheet, :to => 'partials/design/_ie-design.scss'
20
+ file '../shared/_print-design.scss', :like => :stylesheet, :to => 'partials/design/_print-design.scss'
21
+
22
+ file '../shared/print.scss', :like => :stylesheet, :media => 'print', :to => 'print.scss'
23
+ file '../shared/ie.scss', :like => :stylesheet, :media => 'screen, projection', :condition => "lt IE 8", :to => 'ie.scss'
24
+
25
+ # JavaScript
26
+ file '../shared/hammer.js', :like => :javascript, :to => 'hammer.js'
27
+ file '../shared/loader.js', :like => :javascript, :to => 'loader.js'
28
+ file '../shared/modernizr-2.5.3.js', :like => :javascript, :to => 'modernizr-2.5.3.js'
29
+
30
+ help %Q{
31
+ Please contact Sam Richard or Mason Wendell with questions:
32
+
33
+ sam@snug.ug
34
+ mason@zivtech.com
35
+ }
36
+
37
+ welcome_message %Q{
38
+
39
+ Responsive Web Design Kickstart
40
+
41
+ Welcome to the Responsive Web Design Kickstart gem! Provided are the basic tools needed to kickstart a custom Responsive Web Design solution tailor made to your needs! Remember, tools and best practices are always changing, so keep up to date!
42
+
43
+ The following is included in this build:
44
+ Compass Extensions:
45
+ * Susy
46
+ * Toolkit
47
+ * Breakpoint
48
+
49
+ JavaScript:
50
+ * Modernizr Custom Build with all Standard features of 2.3.5 except html5shiv w/printshiv or Media Queries. Build your own from http://modernizr.com/download/ when you are ready for production
51
+ * Loader.js custom JavaScript file for holding conditional asset loading scripts thanks to Modernizr's yepnope (http://yepnopejs.com/). Comes with yepnope code for loading in Hammer.js, just make sure the path is correct from root.. Ready for production, but remember to minify and gzip!
52
+ * Hammer.js (http://eightmedia.github.com/hammer.js/) for awesome touch events. Ready for production, but remember to minify and gzip!
53
+
54
+ Include the following in your <head> tag:
55
+
56
+ <meta content='width=device-width, initial-scale=1.0' name='viewport' />
57
+ <meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
58
+ <!--[if lt IE 9 ]> <script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.2/CFInstall.min.js"></script><script>window.attachEvent("onload",function(){CFInstall.check({mode:"overlay"})})</script> <![endif]-->
59
+ <!-- CSS -->
60
+ <link href='path/to/css/style.css?v=1' rel='stylesheet' />
61
+ <!-- All JavaScript at the bottom, except for Modernizr and Respond/Selectivizr for IE 8 and Below. -->
62
+ <script src='path/to/js/modernizr-2.5.3.js'></script>
63
+
64
+ Include the following, and all other JavaScript, including any JavaScript frameworks you may be using like jQuery, right before your closing </body> tag:
65
+
66
+ <!-- Javascript at the bottom for fast page loading -->
67
+ <script src='path/to/js/loader.js'></script>
68
+
69
+
70
+ }
71
+
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 7
9
- version: 0.2.7
8
+ - 8
9
+ version: 0.2.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - Sam Richard
@@ -134,6 +134,12 @@ files:
134
134
  - templates/shared/style.scss
135
135
  - templates/singularity/_base.scss
136
136
  - templates/singularity/manifest.rb
137
+ - templates/singularity-respond-to/_base.scss
138
+ - templates/singularity-respond-to/manifest.rb
139
+ - templates/susy/_base.scss
140
+ - templates/susy/manifest.rb
141
+ - templates/susy-respond-to/_base.scss
142
+ - templates/susy-respond-to/manifest.rb
137
143
  - LICENSE.txt
138
144
  has_rdoc: true
139
145
  homepage: https://github.com/Snugug/toolkit