vagrant-mutagen 0.1.0 → 0.1.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: d35c8b9d8ef5789d2926e9419241aaffb0a3bf7e
4
- data.tar.gz: 01c3ff65862716f420ec6aa71eaa5f4352338563
3
+ metadata.gz: 1269b8dfe888edf230460d268018ebae8d140a92
4
+ data.tar.gz: 825c09cbe6d20b9b8f6ea96ca283bd877220a2c5
5
5
  SHA512:
6
- metadata.gz: 74348654116def10f2ac84888028a0d4266c969c7ef39ea56947ff1262e6ca0daf7416ba6467e5b1569c81a90fa4b805cd123be87fe5b61ebcf1920a63dba075
7
- data.tar.gz: 31a0defcf41c8292abf85ffd61a3160ea2600a053d4657349f1ae15f70523c8dd98009add9f291b9a3df468977d8b3e4f3ab8c7b8ba582ec1fea5ed1b56f7ee0
6
+ metadata.gz: 4f7a9bd6fffeb8ae67454b997d4d4067155e96161845590d0313f55d5774a15687182bfd47a1fb4a352a4f3cad6fe01cc8ed9e61e88b50036a4df355296c476c
7
+ data.tar.gz: 80bb5c91f474f969dbea3c3ce94283a7d856a2689f0bfd93341c48e52483f7e9f9c72e8ab56ed4bbe66f2361a50017e0f38be912c4be432b4d33c24cb031c881
data/README.md CHANGED
@@ -24,12 +24,41 @@ Update the plugin with:
24
24
 
25
25
  ## Usage
26
26
 
27
- You currently only need to set `orchestrate` and `config.vm.hostname`.
27
+ You need to set `orchestrate` and `config.vm.hostname`.
28
28
 
29
29
  config.mutagen.orchestrate = true
30
30
 
31
31
  This hostname will be used for the entry in the `~/.ssh/config` file.
32
32
 
33
+ Orchestration also requires a `mutagen.yml` file configured for your project.
34
+
35
+ ### Example Project Orchestration Config (`mutagen.yml`)
36
+
37
+ As an example starting point you can use the following for a Drupal project:
38
+ ```
39
+ sync:
40
+ defaults:
41
+ mode: "two-way-resolved"
42
+ ignore:
43
+ vcs: false
44
+ paths:
45
+ - /.idea/
46
+ - /vendor/**/.git/
47
+ - contrib/**/.git/
48
+ - node_modules/
49
+ - /web/sites/**/files/
50
+ symlink:
51
+ mode: "portable"
52
+ watch:
53
+ mode: "portable"
54
+ permissions:
55
+ defaultFileMode: 0644
56
+ defaultDirectoryMode: 0755
57
+ app:
58
+ alpha: "your-vm.hostname:/srv/www/app/"
59
+ beta: "./app/"
60
+ ```
61
+
33
62
  ## Installing development version
34
63
 
35
64
  If you would like to install vagrant-mutagen on the development version perform the following:
@@ -53,6 +82,9 @@ vagrant plugin install vagrant-mutagen-*.gem
53
82
 
54
83
  ## Versions
55
84
 
85
+ ### 0.1.1
86
+ * Added mutagen.yml example
87
+
56
88
  ### 0.1.0
57
89
  * Added config to enable orchestration.
58
90
  * Added new actions to start and terminate orchestration.
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Mutagen
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-mutagen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Donahue