compass-aurora 0.2 → 0.3

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.
@@ -6,6 +6,6 @@ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
6
6
  Compass::Frameworks.register('aurora', :path => extension_path)
7
7
 
8
8
  module Aurora
9
- VERSION = "0.2"
9
+ VERSION = "0.3"
10
10
  DATE = "2012-08-1"
11
11
  end
@@ -1,4 +1,3 @@
1
1
  @import 'toolkit';
2
- @import 'susy';
3
2
  @import 'respond-to';
4
- @import "sassy-buttons"
3
+ @import 'sassy-buttons';
@@ -0,0 +1,2 @@
1
+ @import '../aurora';
2
+ @import 'singularitygs';
@@ -0,0 +1,2 @@
1
+ @import '../aurora';
2
+ @import 'susy';
@@ -15,9 +15,9 @@
15
15
  ////////////////////////
16
16
  // Compass Extensions
17
17
  //
18
- // Aurora includes Toolkit, Breakpoint, Respond-to, Sassy Buttons, and Susy
18
+ // Aurora includes Toolkit, Breakpoint, Respond-to, Sassy Buttons
19
19
  ////////////////////////
20
- @import 'aurora-susy';
20
+ @import 'aurora';
21
21
 
22
22
  ////////////////////////
23
23
  // Private Imports
@@ -40,7 +40,7 @@ help %Q{
40
40
 
41
41
  welcome_message %Q{
42
42
 
43
- Aurora Base Theme using Susy.
43
+ Aurora Base Theme with no grid.
44
44
 
45
45
  }
46
46
 
@@ -17,7 +17,7 @@
17
17
  //
18
18
  // Aurora includes Toolkit, Breakpoint, Respond-to, Sassy Buttons, and SingularityGS
19
19
  ////////////////////////
20
- @import 'aurora-singularitygs';
20
+ @import 'aurora/singularity-grid';
21
21
 
22
22
  ////////////////////////
23
23
  // Private Imports
@@ -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
+ // Aurora includes @import 'compass' so you don't need to.
13
+ ////////////////////////
14
+
15
+ ////////////////////////
16
+ // Compass Extensions
17
+ //
18
+ // Aurora includes Toolkit, Breakpoint, Respond-to, Sassy Buttons, and Susy
19
+ ////////////////////////
20
+ @import 'aurora/susy-grid';
21
+
22
+ ////////////////////////
23
+ // Private Imports
24
+ ////////////////////////
25
+ @import 'variables';
26
+ @import 'functions';
27
+ @import 'mixins';
28
+ @import 'extendables';
@@ -0,0 +1,46 @@
1
+ description "Aurora Base Theme"
2
+
3
+ # ERB ALL the Drupal files!
4
+ file '../shared/aurora.info.erb', :to => "#{options[:project_name] || File.basename(Compass.configuration.project_path)}.info", :erb => true
5
+
6
+ file '../shared/template.php.erb', :to => "template.php", :erb => true
7
+
8
+ # Stylesheets
9
+ file '../shared/style.scss', :like => :stylesheet, :media => 'screen, projection', :to => 'style.scss'
10
+
11
+ file '_base.scss', :like => :stylesheet, :to => 'partials/global/_base.scss'
12
+ file '../shared/_variables.scss', :like => :stylesheet, :to => 'partials/global/_variables.scss'
13
+ file '../shared/_functions.scss', :like => :stylesheet, :to => 'partials/global/_functions.scss'
14
+ file '../shared/_mixins.scss', :like => :stylesheet, :to => 'partials/global/_mixins.scss'
15
+ file '../shared/_extendables.scss', :like => :stylesheet, :to => 'partials/global/_extendables.scss'
16
+
17
+ file '../shared/_style-guide.scss', :like => :stylesheet, :to => 'partials/styleguide/_style-guide.scss'
18
+
19
+ file '../shared/_layout.scss', :like => :stylesheet, :to => 'partials/layout/_layout.scss'
20
+ file '../shared/_ie-layout.scss', :like => :stylesheet, :to => 'partials/layout/_ie-layout.scss'
21
+ file '../shared/_print-layout.scss', :like => :stylesheet, :to => 'partials/layout/_print-layout.scss'
22
+
23
+ file '../shared/_design.scss', :like => :stylesheet, :to => 'partials/design/_design.scss'
24
+ file '../shared/_ie-design.scss', :like => :stylesheet, :to => 'partials/design/_ie-design.scss'
25
+ file '../shared/_print-design.scss', :like => :stylesheet, :to => 'partials/design/_print-design.scss'
26
+
27
+ file '../shared/print.scss', :like => :stylesheet, :media => 'print', :to => 'print.scss'
28
+ file '../shared/ie.scss', :like => :stylesheet, :media => 'screen, projection', :condition => "lt IE 8", :to => 'ie.scss'
29
+
30
+ # JavaScript
31
+ file '../shared/hammer.js', :like => :javascript, :to => 'hammer.js'
32
+ file '../shared/loader.js', :like => :javascript, :to => 'loader.js'
33
+ file '../shared/modernizr-2.5.3.js', :like => :javascript, :to => 'modernizr-2.5.3.js'
34
+
35
+ help %Q{
36
+ Please contact Sam Richard with questions:
37
+
38
+ sam@snug.ug
39
+ }
40
+
41
+ welcome_message %Q{
42
+
43
+ Aurora Base Theme using Susy.
44
+
45
+ }
46
+
metadata CHANGED
@@ -4,8 +4,8 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 2
8
- version: "0.2"
7
+ - 3
8
+ version: "0.3"
9
9
  platform: ruby
10
10
  authors:
11
11
  - Sam Richard
@@ -70,8 +70,9 @@ extra_rdoc_files: []
70
70
 
71
71
  files:
72
72
  - lib/aurora.rb
73
- - stylesheets/_aurora-singularitygs.scss
74
- - stylesheets/_aurora-susy.scss
73
+ - stylesheets/_aurora.scss
74
+ - stylesheets/aurora/_singularity-grid.scss
75
+ - stylesheets/aurora/_susy-grid.scss
75
76
  - templates/project/_base.scss
76
77
  - templates/project/manifest.rb
77
78
  - templates/shared/_design.scss
@@ -96,6 +97,8 @@ files:
96
97
  - templates/shared/template.php.erb
97
98
  - templates/singularity/_base.scss
98
99
  - templates/singularity/manifest.rb
100
+ - templates/susy/_base.scss
101
+ - templates/susy/manifest.rb
99
102
  has_rdoc: true
100
103
  homepage: https://github.com/Snugug/Aurora
101
104
  licenses: []
@@ -1,4 +0,0 @@
1
- @import 'toolkit';
2
- @import 'singularitygs';
3
- @import 'respond-to';
4
- @import "sassy-buttons"