wordmove 1.4.0.pre3 → 1.4.0.pre4
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.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/README.mdown +1 -0
- data/lib/wordmove/deployer/base.rb +2 -1
- data/lib/wordmove/generators/Movefile +4 -2
- data/lib/wordmove/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d69432988eb6f712da0942373acfbb632ddd397
|
|
4
|
+
data.tar.gz: ef78b4984a4d7b2e1dcf09acbc8de185347ee0c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 280f669a1f395a128b1966cf764de60cd468cc5ab18cffff40c6a61e0481e77cdc3537b1435dc56483014d715db9568fc43ebf95afa4caa46ba14e0faf329d0f
|
|
7
|
+
data.tar.gz: fdb6637c7aeae8fc02a2741e44777fd5447c6d1738335de2da86690d9b9b69ad8a281c4397cf107a9ec9dc4594f9c14045a24bd3913567132a722e7609b459aa
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.2.
|
|
1
|
+
2.2.3
|
data/README.mdown
CHANGED
|
@@ -186,8 +186,9 @@ module Wordmove
|
|
|
186
186
|
command << "--user=#{Shellwords.escape(options[:user])}" if options[:user].present?
|
|
187
187
|
command << "--password=#{Shellwords.escape(options[:password])}" if options[:password].present?
|
|
188
188
|
command << "--default-character-set=#{Shellwords.escape(options[:charset])}" if options[:charset].present?
|
|
189
|
-
command << Shellwords.escape(options[:name])
|
|
190
189
|
command << "--result-file=#{Shellwords.escape(save_to_path)}"
|
|
190
|
+
command << Shellwords.split(options[:mysqldump_options]) if options[:mysqldump_options].present?
|
|
191
|
+
command << Shellwords.escape(options[:name])
|
|
191
192
|
puts command.join(" ")
|
|
192
193
|
command.join(" ")
|
|
193
194
|
end
|
|
@@ -8,7 +8,7 @@ local:
|
|
|
8
8
|
password: "<%= database.password %>"
|
|
9
9
|
host: "<%= database.host %>"
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
production:
|
|
12
12
|
vhost: "http://example.com"
|
|
13
13
|
wordpress_path: "/var/www/your_site" # use an absolute path here
|
|
14
14
|
|
|
@@ -18,6 +18,7 @@ staging:
|
|
|
18
18
|
password: "password"
|
|
19
19
|
host: "host"
|
|
20
20
|
# port: "3308" # Use just in case you have exotic server config
|
|
21
|
+
# mysqldump_options: "--max_allowed_packet=1G" # Only available if using SSH
|
|
21
22
|
|
|
22
23
|
exclude:
|
|
23
24
|
- ".git/"
|
|
@@ -56,6 +57,7 @@ staging:
|
|
|
56
57
|
# password: "password"
|
|
57
58
|
# host: "host"
|
|
58
59
|
# passive: true
|
|
60
|
+
# scheme: "ftps" # default "ftp"
|
|
59
61
|
|
|
60
|
-
#
|
|
62
|
+
# staging: # multiple environments can be specified
|
|
61
63
|
# [...]
|
data/lib/wordmove/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wordmove
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.0.
|
|
4
|
+
version: 1.4.0.pre4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefano Verna
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: exe
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2015-
|
|
14
|
+
date: 2015-09-11 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: colorize
|
|
@@ -222,7 +222,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
222
222
|
version: 1.3.1
|
|
223
223
|
requirements: []
|
|
224
224
|
rubyforge_project:
|
|
225
|
-
rubygems_version: 2.4.
|
|
225
|
+
rubygems_version: 2.4.5.1
|
|
226
226
|
signing_key:
|
|
227
227
|
specification_version: 4
|
|
228
228
|
summary: Wordmove, Capistrano for Wordpress
|