compass-wp 0.1.2 → 0.1.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.
@@ -5,6 +5,14 @@ Currently there is just one bare-bones template but it should suffice for now.
5
5
  as I get feedback as to what users want to see. Please feel free to use this for whatever WordPress project you
6
6
  have a need for.
7
7
 
8
+ == Installation/Use
9
+
10
+ This plugin requires that compass be installed before it will run.
11
+
12
+ To make the stylesheets compile correctly please change the default css_dir setting in the config.rb.
13
+ * Change css_dir = "stylesheets" to css_dir = "."
14
+ * I am researching better ways to do this but this will work for now.
15
+
8
16
  == Contributing to compass-wp
9
17
 
10
18
  * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
@@ -1,3 +1,4 @@
1
1
  require 'compass'
2
2
  extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
3
+
3
4
  Compass::Frameworks.register('compass-wp', :path => extension_path)
@@ -16,7 +16,6 @@ file 'sidebar.php'
16
16
  file 'sidebar-footer.php'
17
17
  file 'single.php'
18
18
  file 'tag.php'
19
- file 'style.css'
20
19
  file 'screenshot.png'
21
20
  file '_LICENSE.txt'
22
21
  file '_READ_ME.txt'
@@ -1,4 +1,18 @@
1
+ /*
2
+ Theme Name: SASS/Compass Base
3
+ Theme URI: http://github.com/devonhumes/compass-wp
4
+ Description: Basic WordPress theme compatible with SASS and Compass (Based on Starkers)
5
+ Version: 0.1.0
6
+ Author: Devon Humes
7
+ Author URI: http://www.baldtechnut.com
8
+ Tags: starkers, sass, clean, basic, compass
9
+ */
10
+
11
+
12
+
13
+
1
14
  /*=============== Reset Code =====================*/
15
+
2
16
  @import 'base';
3
17
  @import 'header';
4
18
  @import 'footer';
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass-wp
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 2
10
- version: 0.1.2
9
+ - 3
10
+ version: 0.1.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Devon Humes