wordmove 3.2.3pre2 → 3.2.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.
- checksums.yaml +4 -4
- data/.travis.yml +4 -0
- data/README.mdown +10 -3
- data/lib/wordmove/deployer/base.rb +3 -3
- data/lib/wordmove/version.rb +1 -1
- data/wordmove.gemspec +1 -1
- metadata +7 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a23aae8c4d2c31e8a08dc331d2ebcbf48f916e48
|
|
4
|
+
data.tar.gz: 2d5a7f32174c44cf4456e2d8d319c7d148d04c6f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a0adbeaae885a0a2160201fdf838e080f1c03f7764617ee709ec340e4e90f19cebb5e48fb1080e26ed381717952e6ceddd016888a7bf086ca4a6ec7c2c7695f
|
|
7
|
+
data.tar.gz: 07d4dbc91f6089b6ebb937cb840bcfea04845d282288ddecfdec1be2e072b0052aabe79a497a2a106d88d10db41807a0aa40e7e3e4496e7339c4d223b57bc061
|
data/.travis.yml
CHANGED
data/README.mdown
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
Wordmove is a gem that lets you automatically mirror local
|
|
5
|
+
Wordmove is a gem that lets you automatically mirror local WordPress
|
|
6
6
|
installations and DB data back and forth from your local development machine to
|
|
7
7
|
the remote server.
|
|
8
8
|
|
|
@@ -16,7 +16,8 @@ while base functionalities are granted.
|
|
|
16
16
|
[](https://travis-ci.org/welaika/wordmove)
|
|
17
17
|
[](https://wphub-auto-invitation.herokuapp.com/)
|
|
18
18
|
[](https://rubygems.org/gems/wordmove)
|
|
19
|
-
](https://hub.docker.com/r/welaika/wordmove/)
|
|
20
|
+
|
|
20
21
|
|
|
21
22
|
## Installation
|
|
22
23
|
|
|
@@ -53,7 +54,7 @@ Commands:
|
|
|
53
54
|
wordmove push # Pushes WP data from local machine to remote host
|
|
54
55
|
```
|
|
55
56
|
|
|
56
|
-
Move inside the
|
|
57
|
+
Move inside the WordPress folder and use `wordmove init` to generate a new `movefile.yml` and edit it with your settings. Read the next paragraph for more info.
|
|
57
58
|
|
|
58
59
|
**See the wiki article: [Usage and flags explained](https://github.com/welaika/wordmove/wiki/Usage-and-flags-explained) for more info.**
|
|
59
60
|
|
|
@@ -206,6 +207,12 @@ OS X and Linux are fully supported.
|
|
|
206
207
|
|
|
207
208
|
See the [Windows (un)support disclaimer](https://github.com/welaika/wordmove/wiki/Windows-(un)support-disclaimer)
|
|
208
209
|
|
|
210
|
+
### Docker
|
|
211
|
+
|
|
212
|
+
We have a docker image bringing the latest Wordmove's version with autobuild on new releases.
|
|
213
|
+
|
|
214
|
+
[](https://hub.docker.com/r/welaika/wordmove/)
|
|
215
|
+
|
|
209
216
|
### SSH
|
|
210
217
|
|
|
211
218
|
* You need `rsync` on your machine; as far as we know it's already installed on OS X and Linux.
|
|
@@ -155,8 +155,8 @@ module Wordmove
|
|
|
155
155
|
|
|
156
156
|
def compress_command(path)
|
|
157
157
|
command = ["gzip"]
|
|
158
|
-
command << "
|
|
159
|
-
command << "
|
|
158
|
+
command << "-9"
|
|
159
|
+
command << "-f"
|
|
160
160
|
command << "\"#{path}\""
|
|
161
161
|
command.join(" ")
|
|
162
162
|
end
|
|
@@ -164,7 +164,7 @@ module Wordmove
|
|
|
164
164
|
def uncompress_command(path)
|
|
165
165
|
command = ["gzip"]
|
|
166
166
|
command << "-d"
|
|
167
|
-
command << "
|
|
167
|
+
command << "-f"
|
|
168
168
|
command << "\"#{path}\""
|
|
169
169
|
command.join(" ")
|
|
170
170
|
end
|
data/lib/wordmove/version.rb
CHANGED
data/wordmove.gemspec
CHANGED
|
@@ -38,7 +38,7 @@ Gem::Specification.new do |spec|
|
|
|
38
38
|
|
|
39
39
|
spec.required_ruby_version = ">= 2.4.0"
|
|
40
40
|
|
|
41
|
-
spec.add_development_dependency "bundler", "~>
|
|
41
|
+
spec.add_development_dependency "bundler", "~> 2.0"
|
|
42
42
|
spec.add_development_dependency "priscilla", "~> 1.0"
|
|
43
43
|
spec.add_development_dependency "pry-byebug", "~> 3.1"
|
|
44
44
|
spec.add_development_dependency "rake", "~> 10.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.2.
|
|
4
|
+
version: 3.2.3
|
|
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:
|
|
15
|
+
date: 2019-01-04 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: activesupport
|
|
@@ -116,20 +116,14 @@ dependencies:
|
|
|
116
116
|
requirements:
|
|
117
117
|
- - "~>"
|
|
118
118
|
- !ruby/object:Gem::Version
|
|
119
|
-
version: '
|
|
120
|
-
- - ">="
|
|
121
|
-
- !ruby/object:Gem::Version
|
|
122
|
-
version: 1.14.6
|
|
119
|
+
version: '2.0'
|
|
123
120
|
type: :development
|
|
124
121
|
prerelease: false
|
|
125
122
|
version_requirements: !ruby/object:Gem::Requirement
|
|
126
123
|
requirements:
|
|
127
124
|
- - "~>"
|
|
128
125
|
- !ruby/object:Gem::Version
|
|
129
|
-
version: '
|
|
130
|
-
- - ">="
|
|
131
|
-
- !ruby/object:Gem::Version
|
|
132
|
-
version: 1.14.6
|
|
126
|
+
version: '2.0'
|
|
133
127
|
- !ruby/object:Gem::Dependency
|
|
134
128
|
name: priscilla
|
|
135
129
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -314,12 +308,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
314
308
|
version: 2.4.0
|
|
315
309
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
316
310
|
requirements:
|
|
317
|
-
- - "
|
|
311
|
+
- - ">="
|
|
318
312
|
- !ruby/object:Gem::Version
|
|
319
|
-
version:
|
|
313
|
+
version: '0'
|
|
320
314
|
requirements: []
|
|
321
315
|
rubyforge_project:
|
|
322
|
-
rubygems_version: 2.6.
|
|
316
|
+
rubygems_version: 2.6.14
|
|
323
317
|
signing_key:
|
|
324
318
|
specification_version: 4
|
|
325
319
|
summary: Wordmove, Capistrano for Wordpress
|