fulmar-plugin-neos 1.0.0 → 1.0.1
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/fulmar/plugin/neos/rake/neos.rake +19 -17
- data/lib/fulmar/plugin/neos/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4802e933f52b4da5c149ef25c25a1956eac4635b
|
4
|
+
data.tar.gz: bdfd95f4360016600c0fa7802a6a45cc68401f0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9dda59d892b1bbb8ac9e53d8540a9aeff3302044d5c81b74a41b8e322ac43096e4a45b94671f971e51aaec99f8b2506dfb81518b46331c57552379a32defb8ed
|
7
|
+
data.tar.gz: df0ad5c9804d51d3d0cd9d55dffe0ffdcdd4cc985f267d429a2937dc4298285df99695be82d3b9f07e52d3decf1dee88c087c2363d0b1eb2c6667dfd52b4d350
|
@@ -1,21 +1,23 @@
|
|
1
|
-
|
2
|
-
namespace :
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
1
|
+
unless config.plugins[:neos].nil? || config.plugins[:neos][:sync].nil?
|
2
|
+
namespace :sync do
|
3
|
+
namespace :neos do
|
4
|
+
config.plugins[:neos][:sync].each do |name, sync_config|
|
5
|
+
desc "Sync Neos database and assets from #{name} system"
|
6
|
+
task name do
|
7
|
+
to_environment = sync_config[:to].split(':').first
|
8
|
+
database_task = sync_config[:database_task] || "update:database:#{to_environment}:from_#{name}"
|
9
|
+
Rake::Task[database_task].invoke if Rake::Task.task_defined?(database_task)
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
11
|
+
config.set *sync_config[:from].split(':').map(&:to_sym)
|
12
|
+
from_hostname = config[:hostname]
|
13
|
+
current = config[:type] == 'rsync_with_versions' ? '/current' : ''
|
14
|
+
from_path = "#{config[:remote_path]}#{current}/Data/Persistent/Resources"
|
15
|
+
config.set *sync_config[:to].split(':').map(&:to_sym)
|
16
|
+
info 'Syncing assets...'
|
17
|
+
remote_shell.run "rsync -aq #{from_hostname}:#{from_path} Data/Persistent"
|
18
|
+
info 'Publishing assets...'
|
19
|
+
remote_shell.run './flow resource:publish'
|
20
|
+
end
|
19
21
|
end
|
20
22
|
end
|
21
23
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fulmar-plugin-neos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gerrit Visscher
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-07-
|
11
|
+
date: 2017-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fulmar
|