fulmar-plugin-neos 1.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dd55fb7207416567b8ca1920125e47886be1567b
4
+ data.tar.gz: 50bfd31f7ebc5c782c00f648a65a96dc1fe71029
5
+ SHA512:
6
+ metadata.gz: 71e145f90dedbc24824b8c6fd415755f278b613b3f1c95d4408832a4b190cf3139052316ed154921a82a4283cf88384416fb673d2732ad0d6df471163f6c64e1
7
+ data.tar.gz: 4288bf89e1f4c93222fafad46cbafdf6b7492987710ee62ad3ef5f1335230a257a0d06a92834d0ae7057ec0b409ccb10b8a0dc37de1d9ed39ea086a7ad1ff20b
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.idea
2
+ /.bundle/
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
11
+ /*.gem
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.rubocop.yml ADDED
@@ -0,0 +1,5 @@
1
+ AllCops:
2
+ Include:
3
+ - '**/Fulmarfile'
4
+ Metrics/LineLength:
5
+ Max: 120
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Gerrit Visscher
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # Fulmar::Plugin::Neos
2
+
3
+
4
+ ## Prerequisites
5
+
6
+
7
+ ## Installation
8
+
9
+ This plugin will be installable via gem install `fulmar-plugin-neos` when it is working. It will need Fulmar 2.
10
+ You can also checkout this repo and run `gem build fulmar-plugin-neos.gemspec` and
11
+ `gem install fulmar-plugin-neos*.gem`
12
+
13
+ ## Usage
14
+
15
+
16
+ ## Contributing
17
+
18
+ Bug reports and pull requests are welcome on GitHub at https://github.com/CORE4/fulmar-plugin-neos.
19
+ This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to
20
+ adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
21
+
22
+
23
+ ## License
24
+
25
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+
3
+ lib = File.expand_path('../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'fulmar/plugin/neos/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'fulmar-plugin-neos'
9
+ spec.version = Fulmar::Plugin::Neos::VERSION
10
+ spec.authors = ['Gerrit Visscher']
11
+ spec.email = ['g.visscher@core4.de']
12
+
13
+ spec.summary = 'Plugin to add Neos-specific tasks'
14
+ spec.description = 'This adds specific helper methods and tasks for Neos CMS'
15
+ spec.homepage = 'https://github.com/CORE4/fulmar-plugin-neos'
16
+ spec.license = 'MIT'
17
+
18
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
19
+ f.match(%r{^(test|spec|features)/}) || %w[.editorconfig].include?(f)
20
+ end
21
+ spec.require_paths = ['lib']
22
+
23
+ spec.add_dependency 'fulmar', '~> 2.0'
24
+
25
+ spec.add_development_dependency 'bundler', '~> 1.10'
26
+ spec.add_development_dependency 'rake', '~> 10.0'
27
+ end
@@ -0,0 +1,23 @@
1
+ require 'fulmar/plugin/neos/version'
2
+ require 'fulmar/plugin/neos/dsl_helper'
3
+
4
+ module Fulmar
5
+ module Plugin
6
+ module Neos
7
+ # Plugin configuration
8
+ class Configuration
9
+ def initialize(config)
10
+ @config = config
11
+ end
12
+
13
+ def test_files
14
+ Dir.glob("#{File.dirname(__FILE__)}/config_tests/*.rb")
15
+ end
16
+
17
+ def rake_files
18
+ Dir.glob(File.dirname(__FILE__) + '/rake/*.rake')
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,10 @@
1
+ module Fulmar
2
+ module Plugin
3
+ module Neos
4
+ # List helper methods for Fulmarfiles here
5
+ module DslHelper
6
+ # Nothing yet
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,22 @@
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)
9
+
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'
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,7 @@
1
+ module Fulmar
2
+ module Plugin
3
+ module Neos
4
+ VERSION = '1.0.0'.freeze
5
+ end
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fulmar-plugin-neos
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Gerrit Visscher
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-07-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: fulmar
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description: This adds specific helper methods and tasks for Neos CMS
56
+ email:
57
+ - g.visscher@core4.de
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".rubocop.yml"
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - fulmar-plugin-neos.gemspec
71
+ - lib/fulmar/plugin/neos/configuration.rb
72
+ - lib/fulmar/plugin/neos/dsl_helper.rb
73
+ - lib/fulmar/plugin/neos/rake/neos.rake
74
+ - lib/fulmar/plugin/neos/version.rb
75
+ homepage: https://github.com/CORE4/fulmar-plugin-neos
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.6.11
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: Plugin to add Neos-specific tasks
99
+ test_files: []