vagrant_utm 0.1.1 → 0.1.3
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/CHANGELOG.md +33 -0
- data/README.md +1 -1
- data/docs/Gemfile.lock +2 -2
- data/docs/_config.yml +2 -2
- data/docs/boxes/creating_utm_box.md +7 -6
- data/docs/boxes/utm_box_gallery.md +10 -5
- data/docs/features/synced_folders.md +11 -11
- data/docs/index.md +7 -7
- data/docs/internals/actions.md +2 -1
- data/docs/known_issues.md +2 -2
- data/lib/vagrant_utm/action/prepare_nfs_settings.rb +79 -0
- data/lib/vagrant_utm/action/prepare_nfs_valid_ids.rb +24 -0
- data/lib/vagrant_utm/action.rb +22 -2
- data/lib/vagrant_utm/cap/mount_options.rb +55 -0
- data/lib/vagrant_utm/config.rb +26 -6
- data/lib/vagrant_utm/driver/base.rb +6 -0
- data/lib/vagrant_utm/driver/meta.rb +11 -3
- data/lib/vagrant_utm/driver/version_4_5.rb +10 -0
- data/lib/vagrant_utm/driver/version_4_6.rb +67 -0
- data/lib/vagrant_utm/plugin.rb +21 -0
- data/lib/vagrant_utm/scripts/add_folder_share.applescript +96 -0
- data/lib/vagrant_utm/scripts/add_qemu_additional_args.applescript +43 -0
- data/lib/vagrant_utm/scripts/read_shared_folders.js +47 -0
- data/lib/vagrant_utm/scripts/read_shared_folders_args.js +53 -0
- data/lib/vagrant_utm/scripts/remove_qemu_additional_args.applescript +46 -0
- data/lib/vagrant_utm/synced_folder.rb +127 -0
- data/lib/vagrant_utm/util/unix_mount_helpers.rb +124 -0
- data/lib/vagrant_utm/version.rb +1 -1
- data/notes/README.md +26 -6
- metadata +15 -5
data/notes/README.md
CHANGED
@@ -21,10 +21,30 @@ To release
|
|
21
21
|
To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`
|
22
22
|
GitHub action upon tag push with "v*" will publish gem to GHR and rubygems
|
23
23
|
|
24
|
-
1. Update
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
24
|
+
1. Update
|
25
|
+
CHANGELOG.md
|
26
|
+
version number in `version.rb`
|
27
|
+
version number Gemlock file
|
28
|
+
2. Commit
|
29
|
+
3. Run `bundle exec rake release` (Commit and tags are pushed)
|
30
|
+
4. Cancel push to rubygems.org
|
29
31
|
|
30
|
-
GHA will publish gems to GHR and rubygems
|
32
|
+
GHA will publish gems to GHR and rubygems
|
33
|
+
|
34
|
+
|
35
|
+
To update specific gems in the project
|
36
|
+
|
37
|
+
`bundle update rubocop`
|
38
|
+
|
39
|
+
To update all gems
|
40
|
+
|
41
|
+
`bundle update`
|
42
|
+
|
43
|
+
To update project after a version bump
|
44
|
+
|
45
|
+
```
|
46
|
+
Unable to resolve dependency: user requested 'vagrant_utm (= 0.1.1)'
|
47
|
+
```
|
48
|
+
|
49
|
+
Due to mismatch versions between global installed version and plugin version in the development setup, since they are same name.
|
50
|
+
Fix: Uninstall the global version, while using different version of development setup
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant_utm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Naveenraj M
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Vagrant UTM provider that allows you to manage UTM virtual machines.
|
14
14
|
email:
|
@@ -84,6 +84,8 @@ files:
|
|
84
84
|
- lib/vagrant_utm/action/package_setup_folders.rb
|
85
85
|
- lib/vagrant_utm/action/package_vagrantfile.rb
|
86
86
|
- lib/vagrant_utm/action/prepare_forwarded_port_collision_params.rb
|
87
|
+
- lib/vagrant_utm/action/prepare_nfs_settings.rb
|
88
|
+
- lib/vagrant_utm/action/prepare_nfs_valid_ids.rb
|
87
89
|
- lib/vagrant_utm/action/resume.rb
|
88
90
|
- lib/vagrant_utm/action/set_id.rb
|
89
91
|
- lib/vagrant_utm/action/set_name.rb
|
@@ -93,6 +95,7 @@ files:
|
|
93
95
|
- lib/vagrant_utm/action/suspend.rb
|
94
96
|
- lib/vagrant_utm/action/wait_for_running.rb
|
95
97
|
- lib/vagrant_utm/cap.rb
|
98
|
+
- lib/vagrant_utm/cap/mount_options.rb
|
96
99
|
- lib/vagrant_utm/commands/disposable.rb
|
97
100
|
- lib/vagrant_utm/commands/ip_address.rb
|
98
101
|
- lib/vagrant_utm/config.rb
|
@@ -105,7 +108,9 @@ files:
|
|
105
108
|
- lib/vagrant_utm/model/list_result.rb
|
106
109
|
- lib/vagrant_utm/plugin.rb
|
107
110
|
- lib/vagrant_utm/provider.rb
|
111
|
+
- lib/vagrant_utm/scripts/add_folder_share.applescript
|
108
112
|
- lib/vagrant_utm/scripts/add_port_forwards.applescript
|
113
|
+
- lib/vagrant_utm/scripts/add_qemu_additional_args.applescript
|
109
114
|
- lib/vagrant_utm/scripts/clear_port_forwards.applescript
|
110
115
|
- lib/vagrant_utm/scripts/customize_vm.applescript
|
111
116
|
- lib/vagrant_utm/scripts/downloadVM.sh
|
@@ -115,8 +120,13 @@ files:
|
|
115
120
|
- lib/vagrant_utm/scripts/open_with_utm.js
|
116
121
|
- lib/vagrant_utm/scripts/read_forwarded_ports.applescript
|
117
122
|
- lib/vagrant_utm/scripts/read_network_interfaces.applescript
|
123
|
+
- lib/vagrant_utm/scripts/read_shared_folders.js
|
124
|
+
- lib/vagrant_utm/scripts/read_shared_folders_args.js
|
125
|
+
- lib/vagrant_utm/scripts/remove_qemu_additional_args.applescript
|
118
126
|
- lib/vagrant_utm/scripts/set_mac_address.applescript
|
127
|
+
- lib/vagrant_utm/synced_folder.rb
|
119
128
|
- lib/vagrant_utm/util/compile_forwarded_ports.rb
|
129
|
+
- lib/vagrant_utm/util/unix_mount_helpers.rb
|
120
130
|
- lib/vagrant_utm/version.rb
|
121
131
|
- locales/en.yml
|
122
132
|
- notes/README.md
|
@@ -129,7 +139,7 @@ metadata:
|
|
129
139
|
homepage_uri: https://naveenrajm7.github.io/vagrant_utm/
|
130
140
|
source_code_uri: https://github.com/naveenrajm7/vagrant_utm
|
131
141
|
changelog_uri: https://github.com/naveenrajm7/vagrant_utm/blob/main/CHANGELOG.md
|
132
|
-
post_install_message:
|
142
|
+
post_install_message:
|
133
143
|
rdoc_options: []
|
134
144
|
require_paths:
|
135
145
|
- lib
|
@@ -145,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
145
155
|
version: '0'
|
146
156
|
requirements: []
|
147
157
|
rubygems_version: 3.5.11
|
148
|
-
signing_key:
|
158
|
+
signing_key:
|
149
159
|
specification_version: 4
|
150
160
|
summary: Vagrant UTM provider
|
151
161
|
test_files: []
|