devbox_launcher 0.4.0 → 0.5.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +16 -17
- data/README.md +7 -8
- data/devbox_launcher.gemspec +1 -1
- data/lib/devbox_launcher.rb +1 -0
- data/lib/devbox_launcher/models/box.rb +4 -2
- data/lib/devbox_launcher/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d035caddf255e1498c26b8695f9b1bc538f5e10eebadced13a96854570160627
|
4
|
+
data.tar.gz: a8a84b35b07deed752c2d955a0bfa7a7e54c0c1999e8aaa56be3e71437da6733
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee9fabcc46289524f0f6ebdfc1c1725c2e2530bc763e802661a54773ad071bbd225614f1835aab75b3bfef9dbc3c68c6567d396cd3286693319501e109b1134a
|
7
|
+
data.tar.gz: 441a937f1606f125f4c18125ac8bc646df62d052dee14fdeb570a7dfcb2d7e56805d5c601e1940a735fd4b448434bbf925fe7b3a571cee1ed7bb38b534a68b76
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [0.5.0] - 2021-04-06
|
8
|
+
### Added
|
9
|
+
- Ability to specify `zone` in config
|
10
|
+
|
7
11
|
## [0.4.0]
|
8
12
|
### Added
|
9
13
|
- Sync mutagen with two-way-resolved
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
devbox_launcher (0.
|
4
|
+
devbox_launcher (0.5.0)
|
5
5
|
activesupport (~> 6.0)
|
6
6
|
bcrypt_pbkdf (~> 1.0)
|
7
7
|
ed25519 (~> 1.2)
|
@@ -14,22 +14,22 @@ PATH
|
|
14
14
|
GEM
|
15
15
|
remote: https://rubygems.org/
|
16
16
|
specs:
|
17
|
-
activesupport (6.
|
17
|
+
activesupport (6.1.3)
|
18
18
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
19
|
-
i18n (>=
|
20
|
-
minitest (
|
21
|
-
tzinfo (~>
|
22
|
-
zeitwerk (~> 2.
|
23
|
-
bcrypt_pbkdf (1.0
|
19
|
+
i18n (>= 1.6, < 2)
|
20
|
+
minitest (>= 5.1)
|
21
|
+
tzinfo (~> 2.0)
|
22
|
+
zeitwerk (~> 2.3)
|
23
|
+
bcrypt_pbkdf (1.1.0)
|
24
24
|
byebug (11.0.1)
|
25
25
|
coderay (1.1.2)
|
26
|
-
concurrent-ruby (1.1.
|
26
|
+
concurrent-ruby (1.1.8)
|
27
27
|
diff-lcs (1.3)
|
28
28
|
ed25519 (1.2.4)
|
29
|
-
i18n (1.8.
|
29
|
+
i18n (1.8.9)
|
30
30
|
concurrent-ruby (~> 1.0)
|
31
31
|
method_source (0.9.2)
|
32
|
-
minitest (5.14.
|
32
|
+
minitest (5.14.4)
|
33
33
|
net-ssh (5.2.0)
|
34
34
|
os (1.1.1)
|
35
35
|
pry (0.12.2)
|
@@ -38,7 +38,7 @@ GEM
|
|
38
38
|
pry-byebug (3.7.0)
|
39
39
|
byebug (~> 11.0)
|
40
40
|
pry (~> 0.10)
|
41
|
-
rake (
|
41
|
+
rake (13.0.1)
|
42
42
|
rspec (3.9.0)
|
43
43
|
rspec-core (~> 3.9.0)
|
44
44
|
rspec-expectations (~> 3.9.0)
|
@@ -54,11 +54,10 @@ GEM
|
|
54
54
|
rspec-support (3.9.0)
|
55
55
|
ruby-watchman (0.0.2)
|
56
56
|
ssh-config (0.1.3)
|
57
|
-
thor (1.0
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
zeitwerk (2.4.1)
|
57
|
+
thor (1.1.0)
|
58
|
+
tzinfo (2.0.4)
|
59
|
+
concurrent-ruby (~> 1.0)
|
60
|
+
zeitwerk (2.4.2)
|
62
61
|
|
63
62
|
PLATFORMS
|
64
63
|
ruby
|
@@ -67,7 +66,7 @@ DEPENDENCIES
|
|
67
66
|
bundler (~> 2.0)
|
68
67
|
devbox_launcher!
|
69
68
|
pry-byebug
|
70
|
-
rake (~>
|
69
|
+
rake (~> 13.0)
|
71
70
|
rspec (~> 3.0)
|
72
71
|
|
73
72
|
BUNDLED WITH
|
data/README.md
CHANGED
@@ -4,13 +4,9 @@ Start devboxes quickly
|
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
-
Install the gem:
|
8
|
-
|
9
|
-
|
10
|
-
gem install devbox_launcher
|
11
|
-
```
|
12
|
-
|
13
|
-
Setup gcloud init with the project that contains your VM.
|
7
|
+
- Install the gem: `gem install devbox_launcher`
|
8
|
+
- Setup `gcloud init` with the project that contains your VM
|
9
|
+
- Install [mutagen](https://mutagen.io)
|
14
10
|
|
15
11
|
## Usage
|
16
12
|
|
@@ -21,6 +17,9 @@ Create the config file at `~/.devbox_launcher.yml` so you type less. This is an
|
|
21
17
|
```yml
|
22
18
|
ramon@email.com:
|
23
19
|
project: general-192303
|
20
|
+
# zone not necessarily required, but sometimes starting the box
|
21
|
+
# fails without this:
|
22
|
+
zone: us-central1-a
|
24
23
|
box: your-instance-name
|
25
24
|
mutagen:
|
26
25
|
alpha: /mnt/c/Users/me/src # local machine
|
@@ -36,7 +35,7 @@ To start and create the mutagen session:
|
|
36
35
|
devbox start your-username
|
37
36
|
```
|
38
37
|
|
39
|
-
If you want to mosh in immediately, add the `--mosh` switch.
|
38
|
+
If you want to mosh in immediately, add the `--mosh` switch. Yes, mosh needs to be [installed](https://mosh.org/) in your development machine.
|
40
39
|
|
41
40
|
Note: Linux users that sync mutagen sessions need to install [Watchman](https://facebook.github.io/watchman/).
|
42
41
|
|
data/devbox_launcher.gemspec
CHANGED
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
30
30
|
spec.require_paths = ["lib"]
|
31
31
|
|
32
32
|
spec.add_development_dependency "bundler", "~> 2.0"
|
33
|
-
spec.add_development_dependency "rake", "~>
|
33
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
34
34
|
spec.add_development_dependency "rspec", "~> 3.0"
|
35
35
|
|
36
36
|
spec.add_runtime_dependency "thor", "~> 1.0"
|
data/lib/devbox_launcher.rb
CHANGED
@@ -38,8 +38,10 @@ module DevboxLauncher
|
|
38
38
|
args = {
|
39
39
|
project: config[:project],
|
40
40
|
account: account,
|
41
|
-
|
42
|
-
|
41
|
+
zone: config[:zone],
|
42
|
+
}.each_with_object([]) do |(key, val), arr|
|
43
|
+
next if val.blank?
|
44
|
+
arr << ["--#{key}", val].join("=")
|
43
45
|
end.join(" ")
|
44
46
|
|
45
47
|
[
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devbox_launcher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ramon Tayag
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-04-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '13.0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '13.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|