wordpress-capistrano-v2 1.0.0 → 1.0.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.
- checksums.yaml +4 -4
- data/lib/capistrano/tasks/wordpress.rake +1 -1
- data/wordpress-capistrano.gemspec +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d7007ee68e60ad3afb1778b20b4363917efc4cc9c859abcba1055435709a66f
|
|
4
|
+
data.tar.gz: be3aa24fe4da08a0f28d12f007c25e452946da84dc0e348af98bb254658649eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f8925a1f8b0f172918d48bd9c63868fd692779d8cc34c620294f79bb3390ff41e01c3fc093ec682d885a859b6f4bc91723a87f134841c605765c1b2f4a718071
|
|
7
|
+
data.tar.gz: d50e908e6db6a8e5790d967083970c62660adf13be21f4232286f1bd2655d86264a7650f0c1304c0ea3ee6b8a50dc2bdcc196ec53cd8ce9262c68349ff365695
|
|
@@ -20,7 +20,7 @@ namespace :wordpress do
|
|
|
20
20
|
execute :wp, "--path=#{fetch(:local_wp_path)} db export #{fetch(:application)}.#{timestamp}.sql" # backup
|
|
21
21
|
|
|
22
22
|
execute :gunzip, "-f database.sql.gz"
|
|
23
|
-
execute :wp, "--path=#{fetch(:local_wp_path)} db import database.sql"
|
|
23
|
+
execute :wp, "--path=#{fetch(:local_wp_path)} db import - < database.sql "
|
|
24
24
|
execute :wp, "--path=#{fetch(:local_wp_path)} search-replace #{fetch(:url)} #{fetch(:local_url)}"
|
|
25
25
|
|
|
26
26
|
execute :rm, "database.sql.gz", raise_on_non_zero_exit: false
|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'wordpress-capistrano-v2'
|
|
7
|
-
spec.version = '1.0.
|
|
7
|
+
spec.version = '1.0.2'
|
|
8
8
|
spec.authors = ['Craig Morris', 'Thomas Ferney']
|
|
9
9
|
spec.email = ['craig.michael.morris@gmail.com', 'thomas.ferney@gmail.com']
|
|
10
10
|
spec.description = %q{Deploy your WordPress projects with Capistrano 3.x}
|
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wordpress-capistrano-v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Craig Morris
|
|
8
8
|
- Thomas Ferney
|
|
9
|
-
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2026-03-26 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: capistrano
|
|
@@ -75,7 +74,6 @@ homepage: https://github.com/antiseptikk/wordpress-capistrano
|
|
|
75
74
|
licenses:
|
|
76
75
|
- MIT
|
|
77
76
|
metadata: {}
|
|
78
|
-
post_install_message:
|
|
79
77
|
rdoc_options: []
|
|
80
78
|
require_paths:
|
|
81
79
|
- lib
|
|
@@ -90,8 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
90
88
|
- !ruby/object:Gem::Version
|
|
91
89
|
version: '0'
|
|
92
90
|
requirements: []
|
|
93
|
-
rubygems_version: 3.
|
|
94
|
-
signing_key:
|
|
91
|
+
rubygems_version: 3.6.2
|
|
95
92
|
specification_version: 4
|
|
96
93
|
summary: WordPress support for Capistrano 3.x
|
|
97
94
|
test_files: []
|