compass-aurora 0.1 → 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.
- data/lib/aurora.rb +1 -1
- data/templates/project/manifest.rb +2 -31
- data/templates/shared/config.rb.erb +26 -0
- data/templates/singularity/manifest.rb +2 -30
- metadata +3 -2
data/lib/aurora.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
description "
|
1
|
+
description "Aurora Base Theme"
|
2
2
|
|
3
3
|
# ERB ALL the Drupal files!
|
4
4
|
file '../shared/aurora.info.erb', :to => "#{options[:project_name] || File.basename(Compass.configuration.project_path)}.info", :erb => true
|
@@ -40,36 +40,7 @@ help %Q{
|
|
40
40
|
|
41
41
|
welcome_message %Q{
|
42
42
|
|
43
|
-
|
44
|
-
|
45
|
-
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!
|
46
|
-
|
47
|
-
The following is included in this build:
|
48
|
-
Compass Extensions:
|
49
|
-
* Singularity
|
50
|
-
* Toolkit
|
51
|
-
* Respond-to
|
52
|
-
|
53
|
-
JavaScript:
|
54
|
-
* 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
|
55
|
-
* 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!
|
56
|
-
* Hammer.js (http://eightmedia.github.com/hammer.js/) for awesome touch events. Ready for production, but remember to minify and gzip!
|
57
|
-
|
58
|
-
Include the following in your <head> tag:
|
59
|
-
|
60
|
-
<meta content='width=device-width, initial-scale=1.0' name='viewport' />
|
61
|
-
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
|
62
|
-
<!--[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]-->
|
63
|
-
<!-- CSS -->
|
64
|
-
<link href='path/to/css/style.css?v=1' rel='stylesheet' />
|
65
|
-
<!-- All JavaScript at the bottom, except for Modernizr and Respond/Selectivizr for IE 8 and Below. -->
|
66
|
-
<script src='path/to/js/modernizr-2.5.3.js'></script>
|
67
|
-
|
68
|
-
Include the following, and all other JavaScript, including any JavaScript frameworks you may be using like jQuery, right before your closing </body> tag:
|
69
|
-
|
70
|
-
<!-- Javascript at the bottom for fast page loading -->
|
71
|
-
<script src='path/to/js/loader.js'></script>
|
72
|
-
|
43
|
+
Aurora Base Theme using Susy.
|
73
44
|
|
74
45
|
}
|
75
46
|
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<% project_name = File.basename(Compass.configuration.project_path) %># Require any additional compass plugins here.
|
2
|
+
require 'aurora'
|
3
|
+
|
4
|
+
|
5
|
+
# Set this to the root of your project when deployed:
|
6
|
+
http_path = "/sites/all/themes/<%= project_name %>"
|
7
|
+
css_dir = "css"
|
8
|
+
sass_dir = "sass"
|
9
|
+
images_dir = "images"
|
10
|
+
javascripts_dir = "js"
|
11
|
+
|
12
|
+
# You can select your preferred output style here (can be overridden via the command line):
|
13
|
+
# output_style = :expanded or :nested or :compact or :compressed
|
14
|
+
|
15
|
+
# To enable relative paths to assets via compass helper functions. Uncomment:
|
16
|
+
relative_assets = true
|
17
|
+
|
18
|
+
# To disable debugging comments that display the original location of your selectors. Uncomment:
|
19
|
+
# line_comments = false
|
20
|
+
|
21
|
+
|
22
|
+
# If you prefer the indented syntax, you might want to regenerate this
|
23
|
+
# project again passing --syntax sass, or you can uncomment this:
|
24
|
+
# preferred_syntax = :sass
|
25
|
+
# and then run:
|
26
|
+
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
|
@@ -40,34 +40,6 @@ help %Q{
|
|
40
40
|
|
41
41
|
welcome_message %Q{
|
42
42
|
|
43
|
-
Aurora Base Theme
|
43
|
+
Aurora Base Theme using Singularity.
|
44
44
|
|
45
|
-
|
46
|
-
|
47
|
-
The following is included in this build:
|
48
|
-
Compass Extensions:
|
49
|
-
* Singularity
|
50
|
-
* Toolkit
|
51
|
-
* Respond-to
|
52
|
-
|
53
|
-
JavaScript:
|
54
|
-
* 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
|
55
|
-
* 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!
|
56
|
-
* Hammer.js (http://eightmedia.github.com/hammer.js/) for awesome touch events. Ready for production, but remember to minify and gzip!
|
57
|
-
|
58
|
-
Include the following in your <head> tag:
|
59
|
-
|
60
|
-
<meta content='width=device-width, initial-scale=1.0' name='viewport' />
|
61
|
-
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
|
62
|
-
<!--[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]-->
|
63
|
-
<!-- CSS -->
|
64
|
-
<link href='path/to/css/style.css?v=1' rel='stylesheet' />
|
65
|
-
<!-- All JavaScript at the bottom, except for Modernizr and Respond/Selectivizr for IE 8 and Below. -->
|
66
|
-
<script src='path/to/js/modernizr-2.5.3.js'></script>
|
67
|
-
|
68
|
-
Include the following, and all other JavaScript, including any JavaScript frameworks you may be using like jQuery, right before your closing </body> tag:
|
69
|
-
|
70
|
-
<!-- Javascript at the bottom for fast page loading -->
|
71
|
-
<script src='path/to/js/loader.js'></script>
|
72
|
-
}
|
73
|
-
|
45
|
+
}
|
metadata
CHANGED
@@ -4,8 +4,8 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 0
|
7
|
-
-
|
8
|
-
version: "0.
|
7
|
+
- 2
|
8
|
+
version: "0.2"
|
9
9
|
platform: ruby
|
10
10
|
authors:
|
11
11
|
- Sam Richard
|
@@ -86,6 +86,7 @@ files:
|
|
86
86
|
- templates/shared/_style-guide.scss
|
87
87
|
- templates/shared/_variables.scss
|
88
88
|
- templates/shared/aurora.info.erb
|
89
|
+
- templates/shared/config.rb.erb
|
89
90
|
- templates/shared/hammer.js
|
90
91
|
- templates/shared/ie.scss
|
91
92
|
- templates/shared/loader.js
|