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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dd55fb7207416567b8ca1920125e47886be1567b
4
- data.tar.gz: 50bfd31f7ebc5c782c00f648a65a96dc1fe71029
3
+ metadata.gz: 4802e933f52b4da5c149ef25c25a1956eac4635b
4
+ data.tar.gz: bdfd95f4360016600c0fa7802a6a45cc68401f0e
5
5
  SHA512:
6
- metadata.gz: 71e145f90dedbc24824b8c6fd415755f278b613b3f1c95d4408832a4b190cf3139052316ed154921a82a4283cf88384416fb673d2732ad0d6df471163f6c64e1
7
- data.tar.gz: 4288bf89e1f4c93222fafad46cbafdf6b7492987710ee62ad3ef5f1335230a257a0d06a92834d0ae7057ec0b409ccb10b8a0dc37de1d9ed39ea086a7ad1ff20b
6
+ metadata.gz: 9dda59d892b1bbb8ac9e53d8540a9aeff3302044d5c81b74a41b8e322ac43096e4a45b94671f971e51aaec99f8b2506dfb81518b46331c57552379a32defb8ed
7
+ data.tar.gz: df0ad5c9804d51d3d0cd9d55dffe0ffdcdd4cc985f267d429a2937dc4298285df99695be82d3b9f07e52d3decf1dee88c087c2363d0b1eb2c6667dfd52b4d350
@@ -1,21 +1,23 @@
1
- namespace :sync do
2
- namespace :neos do
3
- config.plugins[:neos][:sync].each do |name, sync_config|
4
- desc "Sync Neos database and assets from #{name} system"
5
- task name do
6
- to_environment = sync_config[:to].split(':').first
7
- database_task = sync_config[:database_task] || "update:database:#{to_environment}:from_#{name}"
8
- Rake::Task[database_task].invoke if Rake::Task.task_defined?(database_task)
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
- config.set *sync_config[:from].split(':').map(&:to_sym)
11
- from_hostname = config[:hostname]
12
- current = config[:type] == 'rsync_with_versions' ? '/current' : ''
13
- from_path = "#{config[:remote_path]}#{current}/Data/Persistent/Resources"
14
- config.set *sync_config[:to].split(':').map(&:to_sym)
15
- info 'Syncing assets...'
16
- remote_shell.run "rsync -aq #{from_hostname}:#{from_path} Data/Persistent"
17
- info 'Publishing assets...'
18
- remote_shell.run './flow resource:publish'
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
@@ -1,7 +1,7 @@
1
1
  module Fulmar
2
2
  module Plugin
3
3
  module Neos
4
- VERSION = '1.0.0'.freeze
4
+ VERSION = '1.0.1'.freeze
5
5
  end
6
6
  end
7
7
  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.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-25 00:00:00.000000000 Z
11
+ date: 2017-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fulmar