compass-wordpress 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/templates/project/manifest.rb +0 -1
- data/templates/thematic/manifest.rb +0 -1
- metadata +2 -4
- data/templates/project/Rakefile +0 -21
- data/templates/thematic/Rakefile +0 -21
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.3
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-wordpress
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wynn Netherland
|
@@ -51,13 +51,11 @@ files:
|
|
51
51
|
- sass/wordpress/thematic/styles/_images.sass
|
52
52
|
- sass/wordpress/thematic/styles/_plugins.sass
|
53
53
|
- sass/wordpress/thematic/styles/_typography.sass
|
54
|
-
- templates/project/Rakefile
|
55
54
|
- templates/project/manifest.rb
|
56
55
|
- templates/project/print.sass
|
57
56
|
- templates/project/readme.txt
|
58
57
|
- templates/project/screen.sass
|
59
58
|
- templates/project/style.css
|
60
|
-
- templates/thematic/Rakefile
|
61
59
|
- templates/thematic/extensions/_border_radius.sass
|
62
60
|
- templates/thematic/functions.php
|
63
61
|
- templates/thematic/manifest.rb
|
@@ -89,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
87
|
requirements: []
|
90
88
|
|
91
89
|
rubyforge_project:
|
92
|
-
rubygems_version: 1.3.
|
90
|
+
rubygems_version: 1.3.5
|
93
91
|
signing_key:
|
94
92
|
specification_version: 3
|
95
93
|
summary: Compass extenstion for creating WordPress themes using Sass
|
data/templates/project/Rakefile
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
ssh_user = "user@domain.com" # for rsync deployment
|
2
|
-
remote_root = "~/path/to/remote/" # for rsync deployment
|
3
|
-
|
4
|
-
namespace :styles do
|
5
|
-
desc "Clear styles"
|
6
|
-
task :clear do
|
7
|
-
puts "*** Clearing styles ***"
|
8
|
-
system "rm -Rfv css/*"
|
9
|
-
end
|
10
|
-
desc "Generate styles"
|
11
|
-
task :generate => [:clear] do
|
12
|
-
puts "*** Generating styles ***"
|
13
|
-
system "compass"
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
desc "Clears the styles, generates new ones and then deploys the theme"
|
18
|
-
task :deploy => 'styles:generate' do
|
19
|
-
puts "*** Deploying the site ***"
|
20
|
-
system("rsync -avz --delete . #{ssh_user}:#{remote_root}")
|
21
|
-
end
|
data/templates/thematic/Rakefile
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
ssh_user = "user@domain.com" # for rsync deployment
|
2
|
-
remote_root = "~/path/to/remote/" # for rsync deployment
|
3
|
-
|
4
|
-
namespace :styles do
|
5
|
-
desc "Clear styles"
|
6
|
-
task :clear do
|
7
|
-
puts "*** Clearing styles ***"
|
8
|
-
system "rm -Rfv css/*"
|
9
|
-
end
|
10
|
-
desc "Generate styles"
|
11
|
-
task :generate => [:clear] do
|
12
|
-
puts "*** Generating styles ***"
|
13
|
-
system "compass"
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
desc "Clears the styles, generates new ones and then deploys the theme"
|
18
|
-
task :deploy => 'styles:generate' do
|
19
|
-
puts "*** Deploying the site ***"
|
20
|
-
system("rsync -avz --delete . #{ssh_user}:#{remote_root}")
|
21
|
-
end
|