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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5da8c346ff8fb0247037d3f5626205f61b8a0e67
4
- data.tar.gz: ac7705a7fa38ce24af1361c0b6a65acfda4e832b
3
+ metadata.gz: a23aae8c4d2c31e8a08dc331d2ebcbf48f916e48
4
+ data.tar.gz: 2d5a7f32174c44cf4456e2d8d319c7d148d04c6f
5
5
  SHA512:
6
- metadata.gz: 56462d561410dee1293969e611c892ce68cbf2a65ef5540048216ea6473e433e9e802ef8c06893d214438dae69f6ae1e554205a423f93145ee81f27941c5712c
7
- data.tar.gz: a594624b973ebdc59350b7138a1d68e7488d7ec5950ba7bd02ac09251d394465db4590e19816612d346a115caade57d3c4b5a0e1ade5efb6b94b0acda64ce255
6
+ metadata.gz: 5a0adbeaae885a0a2160201fdf838e080f1c03f7764617ee709ec340e4e90f19cebb5e48fb1080e26ed381717952e6ceddd016888a7bf086ca4a6ec7c2c7695f
7
+ data.tar.gz: 07d4dbc91f6089b6ebb937cb840bcfea04845d282288ddecfdec1be2e072b0052aabe79a497a2a106d88d10db41807a0aa40e7e3e4496e7339c4d223b57bc061
@@ -7,6 +7,10 @@ rvm:
7
7
 
8
8
  cache: bundler
9
9
 
10
+ before_install:
11
+ - gem update --system
12
+ - gem install bundler
13
+
10
14
  install:
11
15
  - curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
12
16
  - chmod +x wp-cli.phar
@@ -2,7 +2,7 @@
2
2
 
3
3
  ![logo](https://raw.githubusercontent.com/welaika/wordmove/master/assets/images/wordmove.png)
4
4
 
5
- Wordmove is a gem that lets you automatically mirror local Wordpress
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
  [![Build Status](https://travis-ci.org/welaika/wordmove.svg?branch=master)](https://travis-ci.org/welaika/wordmove)
17
17
  [![Slack channel](https://img.shields.io/badge/Slack-WP--Hub-blue.svg)](https://wphub-auto-invitation.herokuapp.com/)
18
18
  [![Gem Version](https://badge.fury.io/rb/wordmove.svg)](https://rubygems.org/gems/wordmove)
19
- ![CodeTriage](https://www.codetriage.com/welaika/wordmove/badges/users.svg)
19
+ [![Docker Build Status](https://img.shields.io/docker/automated/welaika/wordmove.svg)](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 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
+ 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
+ [![Docker Build Status](https://img.shields.io/docker/automated/welaika/wordmove.svg)](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 << "--best"
159
- command << "--force"
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 << "--force"
167
+ command << "-f"
168
168
  command << "\"#{path}\""
169
169
  command.join(" ")
170
170
  end
@@ -1,3 +1,3 @@
1
1
  module Wordmove
2
- VERSION = "3.2.3pre2".freeze
2
+ VERSION = "3.2.3".freeze
3
3
  end
@@ -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", "~> 1.14", ">= 1.14.6"
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.3pre2
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: 2018-09-18 00:00:00.000000000 Z
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: '1.14'
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: '1.14'
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: 1.3.1
313
+ version: '0'
320
314
  requirements: []
321
315
  rubyforge_project:
322
- rubygems_version: 2.6.11
316
+ rubygems_version: 2.6.14
323
317
  signing_key:
324
318
  specification_version: 4
325
319
  summary: Wordmove, Capistrano for Wordpress