wordpresstrano 0.2.3 → 0.2.4
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/wordpress/tasks/webroot.rake +1 -5
- data/wordpresstrano.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 60201fdaad5d7e4e5528d86b310ded6659e4eb61
|
|
4
|
+
data.tar.gz: b417c5aafcbc0bb513f2bf1815578a3ea82017c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88c5b4bf0d1f62b1fba1d5bcb0414d227cc1cead1c687e867580de8d0fdc9f58fa77fe6c3af68b0eca46d1b45008815929d2b50ce253d2f5d02d2be3e3cc0594
|
|
7
|
+
data.tar.gz: 56536c5b9a935b938995a84bc8bd22421f46a794ae0b51965a83ef1da17851a0f9c21d873fe5633b8d853d77239d72c45fb5eb8720ab9b6f90f7eb54cd99fd30
|
|
@@ -6,13 +6,9 @@ namespace :webroot do
|
|
|
6
6
|
next unless remote_path
|
|
7
7
|
|
|
8
8
|
on roles(:app) do |server|
|
|
9
|
-
if test("[ -d #{remote_path} ]")
|
|
10
|
-
execute :rm, "-rf", remote_path
|
|
11
|
-
end
|
|
12
|
-
|
|
13
9
|
info "Symlinking the current release into the website root on #{server.user}@#{server.hostname}"
|
|
14
10
|
|
|
15
|
-
execute :ln, "-nfs", release_path, remote_path
|
|
11
|
+
execute :rm, "-rf", remote_path, "&&", :ln, "-nfs", release_path, remote_path
|
|
16
12
|
end
|
|
17
13
|
end
|
|
18
14
|
|
data/wordpresstrano.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wordpresstrano
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nialto Services
|
|
@@ -81,3 +81,4 @@ signing_key:
|
|
|
81
81
|
specification_version: 4
|
|
82
82
|
summary: Deploy WordPress sites to web servers using Capistrano
|
|
83
83
|
test_files: []
|
|
84
|
+
has_rdoc:
|