matthewtodd-wordpress 0.6.1 → 0.6.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/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.6.2
2
+
3
+ * BUGFIX: escape string interpolation when setting up config/deploy.rb. (Thanks to Alex MacCaw, http://github.com/maccman)
4
+
1
5
  == 0.6.1
2
6
 
3
7
  * Update deploy:setup:config to write new secret keys introduced in Wordpress 2.6.
data/lib/wordpress/cli.rb CHANGED
@@ -32,8 +32,8 @@ module Wordpress
32
32
  server 'your server here', :web, :user => 'your user here'
33
33
 
34
34
  set :scm, :git
35
- set :local_repository, "your server here:git/#{application}.git"
36
- set :repository, "/path/to/repos/git/#{application}.git"
35
+ set :local_repository, "your server here:git/\#{application}.git"
36
+ set :repository, "/path/to/repos/git/\#{application}.git"
37
37
  set :git_shallow_clone, 1
38
38
 
39
39
  set :deploy_to, '/path/to/domains/your domain here/var/www'
data/lib/wordpress.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'wordpress/release'
2
2
 
3
3
  module Wordpress #:nodoc:
4
- VERSION = '0.6.1'
4
+ VERSION = '0.6.2'
5
5
 
6
6
  def self.config(options={})
7
7
  config = release.contents('wp-config-sample.php')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: matthewtodd-wordpress
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Todd
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-01-02 00:00:00 -08:00
12
+ date: 2009-01-21 00:00:00 -08:00
13
13
  default_executable: wordpressify
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -56,7 +56,7 @@ rdoc_options:
56
56
  - --main
57
57
  - README.rdoc
58
58
  - --title
59
- - wordpress-0.6.1
59
+ - wordpress-0.6.2
60
60
  - --inline-source
61
61
  - --line-numbers
62
62
  - --all