wordmove 3.1.2 → 3.2.0
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/.gitignore +1 -0
- data/README.mdown +7 -3
- data/lib/wordmove/assets/wordmove_schema_remote.yml +4 -0
- data/lib/wordmove/generators/movefile.yml +2 -1
- data/lib/wordmove/version.rb +1 -1
- data/wordmove.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eca9667d877fc36c9f844cda54ca58945a73bfe9
|
|
4
|
+
data.tar.gz: c49609ba53e955b4845de883fc6d65f2a0a1e54d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f44f599279ba2cdd9e46fa549ab7bad62d3035aa399a2003b376a5b734df25c7e59ab4868297457656e68e4d57cf34e4960445f7f805dd9a79a10b0b5cc32725
|
|
7
|
+
data.tar.gz: 7f7571cd662b255a365249741ca9c0c9ced3a77723390f3e568cb8187920e3c62ac5186f7e0b7abecbee2d0ccf1be9757e3124f2df00cf35745d22df559eea0a
|
data/.gitignore
CHANGED
data/README.mdown
CHANGED
|
@@ -39,7 +39,6 @@ Wordmove just acts as automation glue bewtween tools you already have and love.
|
|
|
39
39
|
| mysqldump | Dump database | Yes |
|
|
40
40
|
| wp-cli | Adapt database | Yes by defalut, but configurable|
|
|
41
41
|
| lftp | all | Yes, for FTP connections |
|
|
42
|
-
| ssh | all | Yes, for SSH connections |
|
|
43
42
|
|
|
44
43
|
## Usage
|
|
45
44
|
|
|
@@ -147,7 +146,9 @@ production:
|
|
|
147
146
|
```
|
|
148
147
|
|
|
149
148
|
**We warmly recommend to read the wiki article [Multiple environments explained
|
|
150
|
-
](https://github.com/welaika/wordmove/wiki/Multiple-environments-explained) if you need multi-stage support,
|
|
149
|
+
](https://github.com/welaika/wordmove/wiki/Multiple-environments-explained) if you need multi-stage support,
|
|
150
|
+
and the wiki article [Movefile configurations explained](https://github.com/welaika/wordmove/wiki/movefile.yml-configurations-explained)
|
|
151
|
+
to understand about the supported configurations.**
|
|
151
152
|
|
|
152
153
|
## Multistage
|
|
153
154
|
|
|
@@ -211,7 +212,7 @@ See the [Windows (un)support disclaimer](https://github.com/welaika/wordmove/wik
|
|
|
211
212
|
* To use your SSH public key for authentication, just delete the `production.ssh.password` field in your `movefile.yml`. Easy peasy.
|
|
212
213
|
* writing the password inside `movefile.yml` was and is somewhat supported, but **we discourage this practice** in favor of password-less authentication with pub key. Read [here](https://github.com/welaika/wordmove/wiki/%5Bdeprecated%5D-SSH-password-inside-Movefile) for old informations.
|
|
213
214
|
|
|
214
|
-
### FTP
|
|
215
|
+
### FTP and SFTP
|
|
215
216
|
|
|
216
217
|
* You need to install `lftp` on your machine. See community wiki article: [Install lftp on OSX yosemite](https://github.com/welaika/wordmove/wiki/Install-lftp-on-OSX-yosemite)).
|
|
217
218
|
* Use the relative FTP path as `production.wordpress_path`
|
|
@@ -220,6 +221,9 @@ See the [Windows (un)support disclaimer](https://github.com/welaika/wordmove/wik
|
|
|
220
221
|
|
|
221
222
|
FTP support development is [discontinued](https://github.com/welaika/wordmove/wiki/FTP-support-disclaimer), but it's always there.
|
|
222
223
|
|
|
224
|
+
Sice version 3.2.0 SFTP is fully supported, with same functionalities as FTP, through `production.ftp.scheme`
|
|
225
|
+
configuration. More information found in the wiki.
|
|
226
|
+
|
|
223
227
|
## Notes
|
|
224
228
|
|
|
225
229
|
### Mirroring
|
data/lib/wordmove/version.rb
CHANGED
data/wordmove.gemspec
CHANGED
|
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
|
|
|
33
33
|
spec.add_runtime_dependency "colorize", "~> 0.8.1"
|
|
34
34
|
spec.add_runtime_dependency "dotenv", "~> 2.2.1"
|
|
35
35
|
spec.add_runtime_dependency "kwalify", "~> 0"
|
|
36
|
-
spec.add_runtime_dependency "photocopier", "~> 1.
|
|
36
|
+
spec.add_runtime_dependency "photocopier", "~> 1.3", ">= 1.3.0"
|
|
37
37
|
spec.add_runtime_dependency "thor", "~> 0.19.4"
|
|
38
38
|
|
|
39
39
|
spec.required_ruby_version = ">= 2.4.0"
|
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: 3.
|
|
4
|
+
version: 3.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stefano Verna
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: exe
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2018-
|
|
15
|
+
date: 2018-08-01 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: activesupport
|
|
@@ -82,20 +82,20 @@ dependencies:
|
|
|
82
82
|
requirements:
|
|
83
83
|
- - "~>"
|
|
84
84
|
- !ruby/object:Gem::Version
|
|
85
|
-
version: '1.
|
|
85
|
+
version: '1.3'
|
|
86
86
|
- - ">="
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: 1.
|
|
88
|
+
version: 1.3.0
|
|
89
89
|
type: :runtime
|
|
90
90
|
prerelease: false
|
|
91
91
|
version_requirements: !ruby/object:Gem::Requirement
|
|
92
92
|
requirements:
|
|
93
93
|
- - "~>"
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
|
-
version: '1.
|
|
95
|
+
version: '1.3'
|
|
96
96
|
- - ">="
|
|
97
97
|
- !ruby/object:Gem::Version
|
|
98
|
-
version: 1.
|
|
98
|
+
version: 1.3.0
|
|
99
99
|
- !ruby/object:Gem::Dependency
|
|
100
100
|
name: thor
|
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|