devbox_launcher 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 47bd56cd1236592f71bf6b836ffd42bb2eaa79534f338af4e8218c7ec1597c22
4
+ data.tar.gz: 2b22d988c80f27f2f3f3c3c23ac9b92bddd4ae258dda0f7979623daff9e982db
5
+ SHA512:
6
+ metadata.gz: 56d053b7fec492b8399ad3e1aa170b4ba03cbeb242a49dab12486fff44d334928fd54605032c706143728447a18c6cfc1993154e427e17d6503f0787479f634d
7
+ data.tar.gz: c02c5d508262e7e96f2654611352c330529abfb4cf7923517ec9bbc652ec700459cdd7806267f547c5074fc411be1bf25530442123210128ca616f8e314d43ce
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+ .vscode
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.6.3
7
+ before_install: gem install bundler -v 2.0.2
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [Unreleased]
8
+ ### Added
9
+ - Initial release
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at ramon.tayag@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in devbox_launcher.gemspec
4
+ gemspec
5
+
6
+ gem "pry-byebug"
@@ -0,0 +1,70 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ devbox_launcher (0.1.0)
5
+ activesupport
6
+ bcrypt_pbkdf
7
+ ed25519
8
+ net-ssh
9
+ ssh-config
10
+ thor
11
+
12
+ GEM
13
+ remote: https://rubygems.org/
14
+ specs:
15
+ activesupport (6.0.0)
16
+ concurrent-ruby (~> 1.0, >= 1.0.2)
17
+ i18n (>= 0.7, < 2)
18
+ minitest (~> 5.1)
19
+ tzinfo (~> 1.1)
20
+ zeitwerk (~> 2.1, >= 2.1.8)
21
+ bcrypt_pbkdf (1.0.1)
22
+ byebug (11.0.1)
23
+ coderay (1.1.2)
24
+ concurrent-ruby (1.1.5)
25
+ diff-lcs (1.3)
26
+ ed25519 (1.2.4)
27
+ i18n (1.6.0)
28
+ concurrent-ruby (~> 1.0)
29
+ method_source (0.9.2)
30
+ minitest (5.12.2)
31
+ net-ssh (5.2.0)
32
+ pry (0.12.2)
33
+ coderay (~> 1.1.0)
34
+ method_source (~> 0.9.0)
35
+ pry-byebug (3.7.0)
36
+ byebug (~> 11.0)
37
+ pry (~> 0.10)
38
+ rake (10.5.0)
39
+ rspec (3.9.0)
40
+ rspec-core (~> 3.9.0)
41
+ rspec-expectations (~> 3.9.0)
42
+ rspec-mocks (~> 3.9.0)
43
+ rspec-core (3.9.0)
44
+ rspec-support (~> 3.9.0)
45
+ rspec-expectations (3.9.0)
46
+ diff-lcs (>= 1.2.0, < 2.0)
47
+ rspec-support (~> 3.9.0)
48
+ rspec-mocks (3.9.0)
49
+ diff-lcs (>= 1.2.0, < 2.0)
50
+ rspec-support (~> 3.9.0)
51
+ rspec-support (3.9.0)
52
+ ssh-config (0.1.3)
53
+ thor (1.0.1)
54
+ thread_safe (0.3.6)
55
+ tzinfo (1.2.5)
56
+ thread_safe (~> 0.1)
57
+ zeitwerk (2.1.10)
58
+
59
+ PLATFORMS
60
+ ruby
61
+
62
+ DEPENDENCIES
63
+ bundler (~> 2.0)
64
+ devbox_launcher!
65
+ pry-byebug
66
+ rake (~> 10.0)
67
+ rspec (~> 3.0)
68
+
69
+ BUNDLED WITH
70
+ 2.0.2
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 TODO: Write your name
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.
@@ -0,0 +1,57 @@
1
+ # DevboxLauncher
2
+
3
+ Start devboxes quickly
4
+
5
+ ## Installation
6
+
7
+ Install the gem:
8
+
9
+ ```sh
10
+ gem install devbox_launcher
11
+ ```
12
+
13
+ Setup gcloud init with the project that contains your VM.
14
+
15
+ ## Usage
16
+
17
+ `gcloud auth list` should already have the account/s setup. If not, login via `gcloud auth login`.
18
+
19
+ Create the config file at `~/.devbox_launcher.yml` so you type less. This is an example of a personal and work configuration:
20
+
21
+ ```yml
22
+ ramon@email.com:
23
+ project: general-192303
24
+ box: your-instance-name
25
+ mutagen:
26
+ alpha: /mnt/c/Users/me/src # local machine
27
+ beta: ~/src # remote machine
28
+ ramon@company.com:
29
+ project: development-254604
30
+ box: ramon
31
+ ```
32
+
33
+ To start and create the mutagen session:
34
+
35
+ ```sh
36
+ devbox start your-username
37
+ ```
38
+
39
+ If you want to mosh in immediately, add the `--mosh` switch.
40
+
41
+ ## Development
42
+
43
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
44
+
45
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
46
+
47
+ ## Contributing
48
+
49
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/devbox_launcher. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
50
+
51
+ ## License
52
+
53
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
54
+
55
+ ## Code of Conduct
56
+
57
+ Everyone interacting in the DevboxLauncher project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/devbox_launcher/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "devbox_launcher"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "devbox_launcher"
5
+
6
+ DevboxLauncher::CLI.start(ARGV)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,40 @@
1
+ lib = File.expand_path("lib", __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "devbox_launcher/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "devbox_launcher"
7
+ spec.version = DevboxLauncher::VERSION
8
+ spec.authors = ["Ramon Tayag"]
9
+ spec.email = ["ramon.tayag@gmail.com"]
10
+
11
+ spec.summary = %q{Conveniently launch your devbox}
12
+ spec.homepage = "https://github.com/bloom-solutions/devbox_launcher"
13
+ spec.license = "MIT"
14
+
15
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
16
+
17
+ spec.metadata["homepage_uri"] = "https://github.com/bloom-solutions/devbox_launcher"
18
+ spec.metadata["source_code_uri"] = "https://github.com/bloom-solutions/devbox_launcher"
19
+ spec.metadata["changelog_uri"] = "https://github.com/bloom-solutions/devbox_launcher/blob/master/CHANGELOG.md"
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = "bin"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_development_dependency "bundler", "~> 2.0"
31
+ spec.add_development_dependency "rake", "~> 10.0"
32
+ spec.add_development_dependency "rspec", "~> 3.0"
33
+
34
+ spec.add_runtime_dependency "thor"
35
+ spec.add_runtime_dependency "net-ssh"
36
+ spec.add_runtime_dependency "ed25519"
37
+ spec.add_runtime_dependency "bcrypt_pbkdf"
38
+ spec.add_runtime_dependency "ssh-config"
39
+ spec.add_runtime_dependency "activesupport"
40
+ end
@@ -0,0 +1,13 @@
1
+ require "active_support/core_ext/hash/indifferent_access"
2
+ require "ssh-config"
3
+ require "open3"
4
+ require "thor"
5
+ require "net/ssh"
6
+ require "yaml"
7
+ require "devbox_launcher/version"
8
+
9
+ module DevboxLauncher
10
+ class Error < StandardError; end
11
+ end
12
+
13
+ require "devbox_launcher/cli"
@@ -0,0 +1,135 @@
1
+ module DevboxLauncher
2
+ class CLI < Thor
3
+
4
+ WAIT_BOOT_IN_SECONDS = 10.freeze
5
+ DEFAULT_IDENTIFY_FILE_PATH = "~/.ssh/google_compute_engine".freeze
6
+ SSH_CONFIG_PATH = File.expand_path("~/.ssh/config").freeze
7
+ CONFIG_PATH = File.expand_path("~/.devbox_launcher.yml").freeze
8
+ CONFIG = YAML.load_file(CONFIG_PATH).freeze
9
+
10
+ desc "start configured box for account", "Start a devbox by account"
11
+ option :mosh, type: :boolean, desc: "Mosh in"
12
+
13
+ def start(account)
14
+ if not CONFIG.has_key?(account)
15
+ fail "No config in #{CONFIG_PATH} found for #{account}"
16
+ end
17
+
18
+ config = CONFIG[account].with_indifferent_access
19
+
20
+ username = account.gsub(/\W/, "_")
21
+
22
+ set_account_command = %Q(gcloud config set account #{account})
23
+ set_account_stdout, set_account_stderr, set_account_status =
24
+ Open3.capture3(set_account_command)
25
+
26
+ set_project_command = %Q(gcloud config set project #{config[:project]})
27
+ set_project_stdout, set_project_stderr, set_project_status =
28
+ Open3.capture3(set_project_command)
29
+
30
+ name = config[:box]
31
+
32
+ start_command = %Q(gcloud compute instances start #{name})
33
+ start_stdout, start_stderr, start_status = Open3.capture3(start_command)
34
+
35
+ puts "Fetching IP..."
36
+ describe_command = %Q(gcloud compute instances describe #{name})
37
+ describe_stdout, describe_stderr, describe_status =
38
+ Open3.capture3(describe_command)
39
+
40
+ if !describe_status.success?
41
+ msg = "Problem fetching the IP address. "
42
+ msg += "Please ensure you can call `#{describe_command}`.\n"
43
+ msg += "Error:\n"
44
+ msg += describe_stderr
45
+ fail msg
46
+ end
47
+
48
+ description = YAML.load(describe_stdout)
49
+
50
+ ip = description["networkInterfaces"].first["accessConfigs"].
51
+ find { |config| config["kind"] == "compute#accessConfig" }["natIP"]
52
+
53
+ puts "IP: #{ip}"
54
+
55
+ hostname = "#{name}-devbox"
56
+
57
+ set_ssh_config!(hostname, {
58
+ username: username,
59
+ ip: ip,
60
+ })
61
+
62
+ wait_boot(hostname, username)
63
+
64
+ mutagen_alpha_dir = config[:mutagen][:alpha] if config[:mutagen]
65
+ mutagen_beta_dir = config[:mutagen][:beta] if config[:mutagen]
66
+
67
+ if [mutagen_alpha_dir, mutagen_beta_dir].all?
68
+ puts "Terminating all mutagen sessions..."
69
+ terminate_mutagen_command = %Q(mutagen terminate --all)
70
+ terminate_mutagen_stdout,
71
+ terminate_mutagen_stderr,
72
+ terminate_mutagen_status =
73
+ Open3.capture3(terminate_mutagen_command)
74
+
75
+ if not terminate_mutagen_status.success?
76
+ # mutagen prints to stdout and stderr
77
+ msg = "Failed to terminate mutagen sessions: " \
78
+ "#{terminate_mutagen_stdout} -" \
79
+ "#{terminate_mutagen_stderr}"
80
+ fail msg
81
+ end
82
+
83
+ puts "Create mutagen session syncing local #{mutagen_alpha_dir} with #{hostname} #{mutagen_beta_dir}"
84
+ create_mutagen_command = [
85
+ "mutagen sync create",
86
+ mutagen_alpha_dir,
87
+ "#{hostname}:#{mutagen_beta_dir}",
88
+ ].join(" ")
89
+ create_mutagen_stdout,
90
+ create_mutagen_stderr,
91
+ create_mutagen_status =
92
+ Open3.capture3(create_mutagen_command)
93
+
94
+ if not create_mutagen_status.success?
95
+ # mutagen prints to stdout and stderr
96
+ msg = "Failed to create mutagen sessions: " \
97
+ "#{create_mutagen_stdout} -" \
98
+ "#{create_mutagen_stderr}"
99
+ fail msg
100
+ end
101
+ end
102
+
103
+ if options[:mosh]
104
+ mosh_command = %Q(mosh #{hostname})
105
+ system(mosh_command)
106
+ end
107
+ end
108
+
109
+ no_commands do
110
+ def wait_boot(hostname, username)
111
+ Net::SSH.start(hostname, username, timeout: WAIT_BOOT_IN_SECONDS) do |ssh|
112
+ puts "[#{ssh.exec!('date').chomp}] Machine booted"
113
+ end
114
+ rescue Net::SSH::ConnectionTimeout, Net::SSH::Disconnect, Errno::ECONNRESET
115
+ puts "Not booted. Waiting #{WAIT_BOOT_IN_SECONDS} seconds before trying again..."
116
+ wait_boot hostname, username
117
+ end
118
+
119
+ def set_ssh_config!(hostname, username:, ip:)
120
+ FileUtils.touch(SSH_CONFIG_PATH)
121
+ config = ConfigFile.new
122
+ args = {
123
+ "HostName" => ip,
124
+ "User" => username,
125
+ "IdentityFile" => DEFAULT_IDENTIFY_FILE_PATH,
126
+ }
127
+ args.each do |key, value|
128
+ config.set(hostname, key, value)
129
+ end
130
+ config.save
131
+ end
132
+ end
133
+
134
+ end
135
+ end
@@ -0,0 +1,3 @@
1
+ module DevboxLauncher
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,190 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: devbox_launcher
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ramon Tayag
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-01-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :development
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: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: thor
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: net-ssh
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: ed25519
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: bcrypt_pbkdf
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: ssh-config
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: activesupport
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description:
140
+ email:
141
+ - ramon.tayag@gmail.com
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - ".gitignore"
147
+ - ".rspec"
148
+ - ".travis.yml"
149
+ - CHANGELOG.md
150
+ - CODE_OF_CONDUCT.md
151
+ - Gemfile
152
+ - Gemfile.lock
153
+ - LICENSE.txt
154
+ - README.md
155
+ - Rakefile
156
+ - bin/console
157
+ - bin/devbox
158
+ - bin/setup
159
+ - devbox_launcher.gemspec
160
+ - lib/devbox_launcher.rb
161
+ - lib/devbox_launcher/cli.rb
162
+ - lib/devbox_launcher/version.rb
163
+ homepage: https://github.com/bloom-solutions/devbox_launcher
164
+ licenses:
165
+ - MIT
166
+ metadata:
167
+ allowed_push_host: https://rubygems.org
168
+ homepage_uri: https://github.com/bloom-solutions/devbox_launcher
169
+ source_code_uri: https://github.com/bloom-solutions/devbox_launcher
170
+ changelog_uri: https://github.com/bloom-solutions/devbox_launcher/blob/master/CHANGELOG.md
171
+ post_install_message:
172
+ rdoc_options: []
173
+ require_paths:
174
+ - lib
175
+ required_ruby_version: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ version: '0'
180
+ required_rubygems_version: !ruby/object:Gem::Requirement
181
+ requirements:
182
+ - - ">="
183
+ - !ruby/object:Gem::Version
184
+ version: '0'
185
+ requirements: []
186
+ rubygems_version: 3.1.2
187
+ signing_key:
188
+ specification_version: 4
189
+ summary: Conveniently launch your devbox
190
+ test_files: []