compass-aurora 3.0.8 → 3.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 9bdeb8192f6992c256bd415752fc735f55312d05
4
- data.tar.gz: e78723046000a9a6702328b354b63e5211c3a2e8
5
- SHA512:
6
- metadata.gz: e65876c6e70b560b197a012c1133c09f89632c3f79700255f9b7b9be3170ff8b74ded5ef53f5abaa47079d2a898e298e253888ecb5b3aaaaef8288d74bf720bb
7
- data.tar.gz: 6afa0a0a4b35de8cb6c37af5081f35957c9133f93aa843f5dd7007ac43ca80d39cd59180e630e3f6674b9a932fb2b155de6bd1691344c52a987e0782caec9b5e
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2ac21c94d1ebe57ea7209814d52fddd9189ea12a
4
+ data.tar.gz: 438488b38defd8ab1185921a15851ee4cbdf3b5b
5
+ SHA512:
6
+ metadata.gz: b68b130cf24fd78ae98ee74e3166488d636169fc954fc67e3797c0c66d6d716dc6530e070da5ac6b20f6c8d0ba2104115a638a05f76e5387d3b9ea714de60d01
7
+ data.tar.gz: 0f47776d23a3899d97e1aab4daf90037b30f8d0ac8458a46bb0f0384f018ca8e2fa7b8ed86fe40b8a8bddb74efba220e4ad00d2a942e4ebe32519464d7397c04
@@ -7,6 +7,6 @@ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
7
7
  Compass::Frameworks.register('aurora', :path => extension_path)
8
8
 
9
9
  module Aurora
10
- VERSION = "3.0.8"
11
- DATE = "2013-07-02"
10
+ VERSION = "3.0.9"
11
+ DATE = "2014-01-28"
12
12
  end
@@ -3,7 +3,7 @@ no_configuration_file!
3
3
 
4
4
  # Bower's for the Birds
5
5
  file '../shared/bowerrc.txt', :to => '.bowerrc'
6
- file '../shared/component.json.erb', :to => 'component.json', :erb => true
6
+ file '../shared/bower.json.erb', :to => 'bower.json', :erb => true
7
7
 
8
8
  help %Q{
9
9
  Please contact Sam Richard with questions:
@@ -17,4 +17,4 @@ welcome_message %Q{
17
17
  See http://snugug.github.io/Aurora/ for full documentation.
18
18
 
19
19
  Now run `bower install` to install your Bower dependencies.
20
- }
20
+ }
@@ -0,0 +1,154 @@
1
+ CORONA: THEME TEMPLATE
2
+ ----------------------
3
+
4
+ Welcome to the Corona sub-theme template for Aurora. This was meant to be a
5
+ general starting guide for you to jumpstart your theme development. Below are
6
+ some of the general ideas behind this template, and why it was made how it was.
7
+ Certainly, you can use or keep the partial structure, it is entirely up to you.
8
+
9
+ Good luck!
10
+
11
+ ## Partial Structure
12
+
13
+ There are a few key ideas behind the partial structure that are important to
14
+ understand the thinking behind Corona.
15
+
16
+ ### 1. All imports (except for config) happen in the main style.css
17
+
18
+ This is done so that the cascade can easily be kept in a specific order in one
19
+ place. It will also allow for less little files devoted only to importing more
20
+ files from mucking up your code base. We ignore this for _config.scss because
21
+ that one folder should be imported into every .css file we want to make. The
22
+ order of the cascade will not matter within the config, as no CSS will be output
23
+ directly from there.
24
+
25
+ ### 2. Our main folders are config, global, layouts, and components.
26
+
27
+ Unless specific needs require it, the cascade should remain in that order as
28
+ well. The config folder has no CSS output, and is just variables, compass
29
+ extensions, functions, and mixins. The global folder are global elements that
30
+ are site-wide. A better way to think of it are elements that span multiple
31
+ compontents, such as forms, typeface and normalize.css. This folder also
32
+ includes the extendables, as they are global but unlike mixins actually spit out
33
+ CSS. Layouts then have large layout partials. This is more important in Drupal
34
+ where you have panel layouts that are side-wide, and helps to keep them
35
+ seperate. The final folder is compontents, which should house reusable
36
+ components, such as buttons or menu-items. Other folders can be added, if they
37
+ are needed but this is a good starting point.
38
+
39
+ ### 3. Our main files are style.css, maintenance.css and print.css.
40
+
41
+ Style.css will be everything for your site. It will be 95% of your code.
42
+ Maintenance.css is for the Drupal maintenance page, in case you have specific
43
+ styling you do not want on it. This will help the site load faster. You can, and
44
+ should import in specific partial files that you will need on this page.
45
+ Print.css is to be conditionally loaded for print stylesheets. It should stay a
46
+ seperate file as for most browsers it isn't loaded unless needed. Note: I did
47
+ not add an IE.css file, as there are serveral methods to handle internet
48
+ explorer fallbacks, each with its own reasons. Depending if you use breakpoint
49
+ or not, that may determine if you want a seperate file.
50
+
51
+ ### 4. Reusable components, with expectation to extend should always have silent selectors.
52
+
53
+ When you create a component, such as a button. Use both a class and a silent
54
+ selector. Here is an example:
55
+
56
+ ```sass
57
+ .button,
58
+ %button {
59
+ margin: 10px;
60
+ }
61
+
62
+ .button-2 {
63
+ @extend %button;
64
+ }
65
+
66
+ ```
67
+
68
+
69
+ Adding the silent selector is vital to avoid the following issue.
70
+
71
+ ```sass
72
+ .button {
73
+ margin: 10px;
74
+ }
75
+
76
+ .login-page {
77
+ .button {
78
+ background-color: blue;
79
+ }
80
+ }
81
+
82
+ .button-2 {
83
+ @extend .button;
84
+ border: 1px solid grey;
85
+ }
86
+
87
+ ```
88
+ without the silent selctor, you can get unintended CSS being outputted.
89
+
90
+ ```css
91
+ .button, .button-2 {
92
+ margin: 10px;
93
+ }
94
+
95
+ .login-page .button, .login-page .button-2 {
96
+ background-color: blue;
97
+ }
98
+
99
+ .button-2 {
100
+ border: 1px solid grey;
101
+ }
102
+ ```
103
+
104
+ Notice how .button-2 is also added to the .login-page .button selector, which
105
+ may not be desired. On larger codebases, this will become an issue.
106
+
107
+
108
+ ### 5. Remember, do not have your selectors go too deep.
109
+
110
+ After about three selectors deep, performance could start to be affected. This
111
+ is far too easy with Sass, so be mindful. You do not need to have the styling
112
+ for your page to imitate the DOM, in fact it is better if you do not.
113
+
114
+ For example this:
115
+
116
+ ```sass
117
+ .login-page {
118
+ form {
119
+ .buttons {
120
+ .return-link {
121
+ a {
122
+ }
123
+ }
124
+ }
125
+ }
126
+ }
127
+
128
+ ```
129
+
130
+ should probably be more like this:
131
+
132
+
133
+ ```sass
134
+ .login-page {
135
+ form {
136
+ }
137
+
138
+ .buttons {
139
+ }
140
+
141
+ .return-link {
142
+ a {
143
+ }
144
+ }
145
+ }
146
+
147
+ ```
148
+
149
+
150
+ ## Happy theming!
151
+
152
+ Good luck! This was made to be a starter for Drupal projects, but if you just
153
+ need a partial structure, you can use this too--- just remove the tpl folder,
154
+ template.php and the .info file.
@@ -0,0 +1,25 @@
1
+ // Base Partials
2
+ //
3
+ // These files will be shared across all three of your output CSS files.
4
+ // Generally included here are only Compass Extension imports and imports
5
+ // for variables, functions, mixins, and extendables.
6
+
7
+ // Compass Extensions
8
+ //
9
+ // Put an extra compass extensions here. Aurora already puts in respond-to,
10
+ // susy, toolkit, breakpoint, sassy-buttons, and compass-normalize
11
+
12
+ @import 'compass';
13
+ @import 'singularitygs';
14
+ @import 'breakpoint';
15
+ @import 'toolkit-no-css';
16
+
17
+ // Private Imports
18
+ //
19
+ // Any other imports to add. Normally, these do not include any css, but just
20
+ // functions, variables, etc. to be used by other files.
21
+
22
+ @import "variables";
23
+ @import "functions";
24
+ @import "mixins";
25
+
@@ -134,4 +134,4 @@ $gutters : 1/3;
134
134
  $breakpoint-no-query-fallbacks: true;
135
135
  $breakpoint-to-ems: true;
136
136
 
137
- $breakpoints: '';
137
+ $breakpoints: '';
@@ -38,11 +38,11 @@ input[type="button"] {
38
38
 
39
39
 
40
40
  &:hover {
41
-
41
+
42
42
  }
43
43
 
44
44
  &:active {
45
-
45
+
46
46
  }
47
47
  }
48
48
 
@@ -53,10 +53,10 @@ textarea,
53
53
  select {
54
54
 
55
55
  &:focus {
56
-
56
+
57
57
  }
58
58
  }
59
59
 
60
60
  input[type="checkbox"] {
61
-
61
+
62
62
  }
@@ -0,0 +1,16 @@
1
+ ////////////////////////
2
+ //
3
+ // Normalization functions.
4
+ //
5
+ ////////////////////////
6
+
7
+
8
+ ////////////////////////
9
+ // Importing Compass-normalize. Alternatively, you can copy/paste normalize.css
10
+ // into this file, and edit it as you need. This method is actually recommended
11
+ // although not always needed.
12
+ ////////////////////////
13
+ @import "normalize";
14
+
15
+ // Add in our border-box styling from toolkit.
16
+ @import 'toolkit/border-box';
@@ -7,14 +7,13 @@
7
7
  ////////////////////////
8
8
 
9
9
  ////////////////////////
10
- // Base Import
10
+ // Configuration, no CSS output.
11
+ // variables
12
+ // mixins
13
+ // functions
14
+ // compass extensions
11
15
  ////////////////////////
12
- @import 'partials/base';
13
-
14
- ////////////////////////
15
- // Other partial import
16
- ////////////////////////
17
- @import 'partials/global/global';
16
+ @import 'config/config';
18
17
 
19
18
 
20
19
  // Code specifically for the maintenance page.
@@ -6,7 +6,6 @@ file '../shared/config.rb.erb', :to => "config.rb", :erb => true
6
6
 
7
7
  # Add in README
8
8
  file '../shared/README-Sass.md', :like => :stylesheet, :to => 'README.md'
9
- file '../shared/README-Partials.md', :like => :stylesheet, :to => 'partials/README.md'
10
9
  file '../shared/README-templates.md', :to => "templates/README.md"
11
10
 
12
11
  # ERB ALL the Drupal files!
@@ -17,10 +16,10 @@ file '../shared/template.php.erb', :to => "template.php", :erb => true
17
16
  # Stylesheets
18
17
  discover :stylesheets
19
18
 
20
- file '../shared/_functions.scss', :like => :stylesheet, :to => 'partials/_functions.scss'
21
- file '../shared/_mixins.scss', :like => :stylesheet, :to => 'partials/_mixins.scss'
19
+ file '../shared/_functions.scss', :like => :stylesheet, :to => 'config/_functions.scss'
20
+ file '../shared/_mixins.scss', :like => :stylesheet, :to => 'config/_mixins.scss'
22
21
 
23
- file '../shared/_extendables.scss', :like => :stylesheet, :to => 'partials/global/_extendables.scss'
22
+ file '../shared/_extendables.scss', :like => :stylesheet, :to => 'global/_extendables.scss'
24
23
 
25
24
  # Developer Consistency
26
25
  file '../shared/Gemfile.txt', :to => 'Gemfile'
@@ -5,10 +5,15 @@
5
5
  // This file is styles specific to Printed files.
6
6
  ////////////////////////
7
7
 
8
+
8
9
  ////////////////////////
9
- // Base Import
10
+ // Configuration, no CSS output.
11
+ // variables
12
+ // mixins
13
+ // functions
14
+ // compass extensions
10
15
  ////////////////////////
11
- @import 'partials/base';
16
+ @import 'config/config';
12
17
 
13
18
 
14
19
  ////////////////////////
@@ -1,21 +1,36 @@
1
1
  ////////////////////////
2
2
  // Style File
3
3
  //
4
- // This file gets turned into style.css. This file should really hold nothing except for imports of your base, global, and design partials.
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.
5
7
  ////////////////////////
6
8
 
7
9
  ////////////////////////
8
- // Base Import
10
+ // Configuration, no CSS output.
11
+ // variables
12
+ // mixins
13
+ // functions
14
+ // compass extensions
9
15
  ////////////////////////
10
- @import 'partials/base';
16
+ @import 'config/config';
11
17
 
12
18
  ////////////////////////
13
- // Import Global Stylings
19
+ // Import global elements
14
20
  ////////////////////////
15
- @import 'partials/global/global';
21
+ @import 'global/normalize.css';
22
+ @import 'global/extendables';
23
+ @import 'global/type';
24
+ @import 'global/forms';
16
25
 
17
26
  ////////////////////////
18
- // Import Design Stylings
27
+ // Import layouts
19
28
  ////////////////////////
20
- @import 'partials/design/design';
29
+ //@import 'layout/header';
30
+ //@import 'layout/panel-page-x';
21
31
 
32
+ ////////////////////////
33
+ // Import compontents
34
+ ////////////////////////
35
+ //@import 'components/tabs';
36
+ //@import 'components/button';
@@ -1,13 +1,13 @@
1
1
  # Pull gems from RubyGems
2
2
  source 'https://rubygems.org'
3
3
 
4
- # ~> Refers to all versions of the given gem on the current full version number, so it will be able to use any version of Compass Aurora until Compass Aurora 4.x.x. For a specific version of a gem, remove the ~>
5
- gem 'compass-aurora', '~>3.0.0'
6
- gem 'toolkit', '~>1.0.0'
7
- gem 'singularitygs', '~>1.0.7'
8
- gem 'breakpoint', '~>2.0.2'
9
- gem 'sassy-buttons', '~>0.1.4'
10
- gem 'compass-normalize', '~>1.4.3'
4
+ # We declare depdendencies at less than their next full version to ensure we don't get any breaking changes.
5
+ gem 'compass-aurora', '<4.0.0'
6
+ gem 'toolkit', '<2.0.0'
7
+ gem 'singularitygs', '<2.0.0'
8
+ gem 'breakpoint', '<3.0.0'
9
+ gem 'sassy-buttons', '<1.0.0'
10
+ gem 'compass-normalize', '<2.0.0'
11
11
  gem 'css_parser', '~>1.3.4'
12
12
 
13
- # Now that you're using Bundler, you need to run `bundle exec compass watch` instead of simply `compass watch`.
13
+ # Now that you're using Bundler, you need to run `bundle exec compass watch` instead of simply `compass watch`.
@@ -1,5 +1,9 @@
1
1
  <% project_name = File.basename(Compass.configuration.project_path) %><% project_js = Compass.configuration.javascripts_dir %><% project_css = Compass.configuration.css_dir %><% project_sass = Compass.configuration.sass_dir %><% project_img = Compass.configuration.images_dir %><% project_fonts = Compass.configuration.fonts_dir %># Require any additional compass plugins here.
2
- require 'aurora'
2
+ require 'compass'
3
+ require 'singularitygs'
4
+ require 'breakpoint'
5
+ require 'toolkit'
6
+ require 'compass-normalize'
3
7
 
4
8
  # Set this to the root of your project when deployed:
5
9
  http_path = "/sites/all/themes/<%= project_name %>"
@@ -5,15 +5,13 @@
5
5
  *
6
6
  * @param $vars
7
7
  * An array of variables to pass to the theme template.
8
- * @param $hook
9
- * The name of the template being rendered ("maintenance_page" in this case.)
10
8
  */
11
- function <%= project_name %>_preprocess_maintenance_page(&$vars, $hook) {
9
+ function <%= project_name %>_preprocess_maintenance_page(&$vars) {
12
10
  // When a variable is manipulated or added in preprocess_html or
13
11
  // preprocess_page, that same work is probably needed for the maintenance page
14
12
  // as well, so we can just re-use those functions to do that work here.
15
- // <%= project_name %>_preprocess_html($variables, $hook);
16
- // <%= project_name %>_preprocess_page($variables, $hook);
13
+ // <%= project_name %>_preprocess_html($vars);
14
+ // <%= project_name %>_preprocess_page($vars);
17
15
 
18
16
  // This preprocessor will also be used if the db is inactive. To ensure your
19
17
  // theme is used, add the following line to your settings.php file:
@@ -37,8 +35,6 @@ function <%= project_name %>_modernizr_load_alter(&$load) {
37
35
  *
38
36
  * @param $vars
39
37
  * An array of variables to pass to the theme template.
40
- * @param $hook
41
- * The name of the template being rendered ("html" in this case.)
42
38
  */
43
39
  /* -- Delete this line if you want to use this function
44
40
  function <%= project_name %>_preprocess_html(&$vars) {
@@ -50,8 +46,6 @@ function <%= project_name %>_preprocess_html(&$vars) {
50
46
  *
51
47
  * @param $vars
52
48
  * An array of variables to pass to the theme template.
53
- * @param $hook
54
- * The name of the template being rendered ("page" in this case.)
55
49
  */
56
50
  /* -- Delete this line if you want to use this function
57
51
  function <%= project_name %>_preprocess_page(&$vars) {
@@ -63,11 +57,9 @@ function <%= project_name %>_preprocess_page(&$vars) {
63
57
  *
64
58
  * @param $vars
65
59
  * An array of variables to pass to the theme template.
66
- * @param $hook
67
- * The name of the template being rendered ("region" in this case.)
68
60
  */
69
61
  /* -- Delete this line if you want to use this function
70
- function <%= project_name %>_preprocess_region(&$vars, $hook) {
62
+ function <%= project_name %>_preprocess_region(&$vars) {
71
63
 
72
64
  }
73
65
  // */
@@ -77,11 +69,9 @@ function <%= project_name %>_preprocess_region(&$vars, $hook) {
77
69
  *
78
70
  * @param $vars
79
71
  * An array of variables to pass to the theme template.
80
- * @param $hook
81
- * The name of the template being rendered ("block" in this case.)
82
72
  */
83
73
  /* -- Delete this line if you want to use this function
84
- function <%= project_name %>_preprocess_block(&$vars, $hook) {
74
+ function <%= project_name %>_preprocess_block(&$vars) {
85
75
 
86
76
  }
87
77
  // */
@@ -91,11 +81,9 @@ function <%= project_name %>_preprocess_block(&$vars, $hook) {
91
81
  *
92
82
  * @param $vars
93
83
  * An array of variables to pass to the theme template.
94
- * @param $hook
95
- * The name of the template being rendered ("entity" in this case.)
96
84
  */
97
85
  /* -- Delete this line if you want to use this function
98
- function <%= project_name %>_preprocess_entity(&$vars, $hook) {
86
+ function <%= project_name %>_preprocess_entity(&$vars) {
99
87
 
100
88
  }
101
89
  // */
@@ -105,11 +93,9 @@ function <%= project_name %>_preprocess_entity(&$vars, $hook) {
105
93
  *
106
94
  * @param $vars
107
95
  * An array of variables to pass to the theme template.
108
- * @param $hook
109
- * The name of the template being rendered ("node" in this case.)
110
96
  */
111
97
  /* -- Delete this line if you want to use this function
112
- function <%= project_name %>_preprocess_node(&$vars, $hook) {
98
+ function <%= project_name %>_preprocess_node(&$vars) {
113
99
  $node = $vars['node'];
114
100
  }
115
101
  // */
@@ -133,11 +119,9 @@ function <%= project_name %>_preprocess_field(&$vars, $hook) {
133
119
  *
134
120
  * @param $vars
135
121
  * An array of variables to pass to the theme template.
136
- * @param $hook
137
- * The name of the template being rendered ("comment" in this case.)
138
122
  */
139
123
  /* -- Delete this line if you want to use this function
140
- function <%= project_name %>_preprocess_comment(&$vars, $hook) {
124
+ function <%= project_name %>_preprocess_comment(&$vars) {
141
125
  $comment = $vars['comment'];
142
126
  }
143
127
  // */
metadata CHANGED
@@ -1,88 +1,136 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: compass-aurora
3
- version: !ruby/object:Gem::Version
4
- version: 3.0.8
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.9
5
5
  platform: ruby
6
- authors:
6
+ authors:
7
7
  - Sam Richard
8
8
  - Ian Carrico
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2013-07-02 00:00:00 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: compass
12
+ date: 2014-01-28 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: sass
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ~>
19
+ - !ruby/object:Gem::Version
20
+ version: 3.2.14
21
+ type: :runtime
17
22
  prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
19
- requirements:
20
- - - ">="
21
- - !ruby/object:Gem::Version
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ version: 3.2.14
28
+ - !ruby/object:Gem::Dependency
29
+ name: compass
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
22
34
  version: 0.12.2
23
35
  type: :runtime
24
- version_requirements: *id001
25
- - !ruby/object:Gem::Dependency
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ~>
40
+ - !ruby/object:Gem::Version
41
+ version: 0.12.2
42
+ - !ruby/object:Gem::Dependency
26
43
  name: toolkit
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ~>
47
+ - !ruby/object:Gem::Version
48
+ version: 1.2.2
49
+ type: :runtime
27
50
  prerelease: false
28
- requirement: &id002 !ruby/object:Gem::Requirement
29
- requirements:
30
- - - ">="
31
- - !ruby/object:Gem::Version
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ~>
54
+ - !ruby/object:Gem::Version
32
55
  version: 1.2.2
56
+ - !ruby/object:Gem::Dependency
57
+ name: breakpoint
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ~>
61
+ - !ruby/object:Gem::Version
62
+ version: 2.0.1
33
63
  type: :runtime
34
- version_requirements: *id002
35
- - !ruby/object:Gem::Dependency
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 2.0.1
70
+ - !ruby/object:Gem::Dependency
36
71
  name: sassy-buttons
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ version: 0.2.0
77
+ type: :runtime
37
78
  prerelease: false
38
- requirement: &id003 !ruby/object:Gem::Requirement
39
- requirements:
40
- - - ">="
41
- - !ruby/object:Gem::Version
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ~>
82
+ - !ruby/object:Gem::Version
42
83
  version: 0.2.0
84
+ - !ruby/object:Gem::Dependency
85
+ name: singularitygs
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ~>
89
+ - !ruby/object:Gem::Version
90
+ version: 1.1.2
43
91
  type: :runtime
44
- version_requirements: *id003
45
- - !ruby/object:Gem::Dependency
46
- name: compass-normalize
47
92
  prerelease: false
48
- requirement: &id004 !ruby/object:Gem::Requirement
49
- requirements:
50
- - - ">="
51
- - !ruby/object:Gem::Version
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ~>
96
+ - !ruby/object:Gem::Version
97
+ version: 1.1.2
98
+ - !ruby/object:Gem::Dependency
99
+ name: compass-normalize
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ~>
103
+ - !ruby/object:Gem::Version
52
104
  version: 1.4.3
53
105
  type: :runtime
54
- version_requirements: *id004
55
- - !ruby/object:Gem::Dependency
56
- name: bundler
57
106
  prerelease: false
58
- requirement: &id005 !ruby/object:Gem::Requirement
59
- requirements:
60
- - - ">="
61
- - !ruby/object:Gem::Version
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ~>
110
+ - !ruby/object:Gem::Version
111
+ version: 1.4.3
112
+ - !ruby/object:Gem::Dependency
113
+ name: bundler
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - '>='
117
+ - !ruby/object:Gem::Version
62
118
  version: 1.3.5
63
119
  type: :runtime
64
- version_requirements: *id005
65
- - !ruby/object:Gem::Dependency
66
- name: css_parser
67
120
  prerelease: false
68
- requirement: &id006 !ruby/object:Gem::Requirement
69
- requirements:
70
- - - ">="
71
- - !ruby/object:Gem::Version
72
- version: 1.3.4
73
- type: :runtime
74
- version_requirements: *id006
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - '>='
124
+ - !ruby/object:Gem::Version
125
+ version: 1.3.5
75
126
  description: Aurora Subthemes!
76
- email:
127
+ email:
77
128
  - snugug@gmail.com
78
- - ian@iancarrico.com
129
+ - github@iancarrico.com
79
130
  executables: []
80
-
81
131
  extensions: []
82
-
83
132
  extra_rdoc_files: []
84
-
85
- files:
133
+ files:
86
134
  - lib/aurora.rb
87
135
  - stylesheets/_aurora.scss
88
136
  - stylesheets/aurora/_singularity-grid.scss
@@ -95,15 +143,14 @@ files:
95
143
  - templates/box-sizing/behaviors/box-sizing/boxsizing.php
96
144
  - templates/box-sizing/manifest.rb
97
145
  - templates/box-sizing/README-behaviors.md
146
+ - templates/corona/config/_config.scss
147
+ - templates/corona/config/_variables.scss
148
+ - templates/corona/CORONA.md
149
+ - templates/corona/global/_forms.scss
150
+ - templates/corona/global/_normalize.css.scss
151
+ - templates/corona/global/_type.scss
98
152
  - templates/corona/maintenance.scss
99
153
  - templates/corona/manifest.rb
100
- - templates/corona/partials/_base.scss
101
- - templates/corona/partials/_variables.scss
102
- - templates/corona/partials/design/_design.scss
103
- - templates/corona/partials/global/_defaults.scss
104
- - templates/corona/partials/global/_forms.scss
105
- - templates/corona/partials/global/_global.scss
106
- - templates/corona/partials/global/_type.scss
107
154
  - templates/corona/print.scss
108
155
  - templates/corona/style.scss
109
156
  - templates/grunt/manifest.rb
@@ -127,8 +174,8 @@ files:
127
174
  - templates/shared/_mixins.scss
128
175
  - templates/shared/_variables.scss
129
176
  - templates/shared/aurora.info.erb
177
+ - templates/shared/bower.json.erb
130
178
  - templates/shared/bowerrc.txt
131
- - templates/shared/component.json.erb
132
179
  - templates/shared/config.rb.erb
133
180
  - templates/shared/editorconfig.txt
134
181
  - templates/shared/Gemfile.txt
@@ -141,31 +188,27 @@ files:
141
188
  - templates/shared/README-templates.md
142
189
  - templates/shared/template.php.erb
143
190
  homepage: http://drupal.org/project/aurora
144
- licenses:
191
+ licenses:
145
192
  - GPL
146
193
  metadata: {}
147
-
148
194
  post_install_message:
149
195
  rdoc_options: []
150
-
151
- require_paths:
196
+ require_paths:
152
197
  - lib
153
- required_ruby_version: !ruby/object:Gem::Requirement
154
- requirements:
155
- - - ">="
156
- - !ruby/object:Gem::Version
157
- version: "0"
158
- required_rubygems_version: !ruby/object:Gem::Requirement
159
- requirements:
160
- - - ">="
161
- - !ruby/object:Gem::Version
162
- version: "1.2"
198
+ required_ruby_version: !ruby/object:Gem::Requirement
199
+ requirements:
200
+ - - '>='
201
+ - !ruby/object:Gem::Version
202
+ version: '0'
203
+ required_rubygems_version: !ruby/object:Gem::Requirement
204
+ requirements:
205
+ - - '>='
206
+ - !ruby/object:Gem::Version
207
+ version: '1.2'
163
208
  requirements: []
164
-
165
209
  rubyforge_project: compass-aurora
166
210
  rubygems_version: 2.0.3
167
211
  signing_key:
168
212
  specification_version: 4
169
213
  summary: The companion gem for the Drupal Aurora base theme.
170
214
  test_files: []
171
-
@@ -1,31 +0,0 @@
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
- // Toolkit imports all of Compass, so there is no need to import it separately.
9
- ////////////////////////
10
-
11
- ////////////////////////
12
- // Compass Extensions
13
- //
14
- // Note: normalize.css is imported in partials/global/_global.scss. We do this
15
- // so that it pulls in the variables set within the variables partial.
16
- ////////////////////////
17
- @import 'singularitygs';
18
- @import 'toolkit';
19
- @import 'sassy-buttons';
20
-
21
-
22
- ////////////////////////
23
- // Private Imports
24
- //
25
- // Any other imports to add. Normally, these do not include any css, but just
26
- // functions, variables, etc. to be used by other files.
27
- ////////////////////////
28
-
29
- @import 'variables';
30
- @import 'functions';
31
- @import 'mixins';
@@ -1,4 +0,0 @@
1
- /**
2
- * Design partials: A place to put your specific design partials.
3
- */
4
-
@@ -1,3 +0,0 @@
1
- /**
2
- * Defaults: For any general elements to apply to the whole page.
3
- */
@@ -1,11 +0,0 @@
1
- /**
2
- * Global partials: Typography, forms, site-wide changes.
3
- */
4
-
5
- // We import normalize.css here, so that it inherits the variables already set.
6
- @import 'normalize';
7
-
8
- @import 'extendables';
9
- @import 'defaults';
10
- @import 'type';
11
- @import 'forms';