easy_eb 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c6b66c036ac9693a558d1df5f475618fe5ccbb44c625e18910029f69e433974c
4
- data.tar.gz: bb2eaaa3ba89339cf49a3c4582b6b818b9b78334eecd438864b2a5e5bb3b003c
3
+ metadata.gz: 2e88dd48e8beca6807ae1c0fe0c71bcc066d753c32e13b688855b2f43f84c7b9
4
+ data.tar.gz: 590e3505829161464449c23785b8f491f0cf8dc64b1613311d19fecbad67cae4
5
5
  SHA512:
6
- metadata.gz: 7d06399c166ecf532efc5d1c23948595d116e44bc7ae8ae4daef1055b700ad0f50d75bd3fc5a8175f341bd5acfe1190cef2c3be948c5a2f3ef4ab68b4e777281
7
- data.tar.gz: 6c00c7b035e1e8b8ce683620da6cb0b58b8807ced4c9c372a8caea6109e6d053f78de207901557592d4483881e20a72181a9d07f6071d4e976b875da57e8c2a6
6
+ metadata.gz: 9c862c6cb7d703f1c823577558862b1f57bff8fe3d86511be013fc3e2077aa4675c25f0f911db1336197df9b87501b350fb2915a137744e4c81661107a584cc2
7
+ data.tar.gz: 984b21ae1ac2296e84bb2f1a3507e0fe55c7acc4438645708e0ed214efa05c80f4acf3150478465119caca9e4884f0acb16b36465db8bb486a98e7490e253046
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- easy_eb (0.1.0)
4
+ easy_eb (0.2.0)
5
5
  thor
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -34,7 +34,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
34
34
 
35
35
  ## Contributing
36
36
 
37
- Bug reports and pull requests are welcome on GitHub at https://github.com/pingortle/easy_eb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/pingortle/easy_eb/blob/master/CODE_OF_CONDUCT.md).
37
+ Bug reports and pull requests are welcome on GitHub at https://github.com/Ungerware/easy_eb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/pingortle/easy_eb/blob/master/CODE_OF_CONDUCT.md).
38
38
 
39
39
  ## License
40
40
 
data/lib/easy_eb/ssh.rb CHANGED
@@ -3,6 +3,7 @@ module EasyEb
3
3
  def self.start!(environment: nil, command: nil, ssh: nil, eb_flags: nil, env_command: "bin/ebenv")
4
4
  bash_args = command && "-c \\\"#{env_command} #{command}\\\""
5
5
  tty_flag = command && "-t"
6
+ ssh_flag = ssh && "-e #{ssh}"
6
7
  command_arg = [
7
8
  tty_flag,
8
9
  "cd /var/app/current; sudo bash -i #{bash_args}"
@@ -11,7 +12,7 @@ module EasyEb
11
12
  args = [
12
13
  eb_flags,
13
14
  environment,
14
- ssh,
15
+ ssh_flag,
15
16
  "--command \"#{command_arg}\""
16
17
  ].compact.join(" ")
17
18
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EasyEb
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_eb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaleb Lape
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-10 00:00:00.000000000 Z
11
+ date: 2022-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -61,7 +61,7 @@ metadata:
61
61
  homepage_uri: https://unger-ware.com
62
62
  source_code_uri: https://github.com/Ungerware/easy_eb.git
63
63
  changelog_uri: https://github.com/Ungerware/easy_eb/blob/master/CHANGELOG.md
64
- post_install_message:
64
+ post_install_message:
65
65
  rdoc_options: []
66
66
  require_paths:
67
67
  - lib
@@ -76,8 +76,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
78
  requirements: []
79
- rubygems_version: 3.3.9
80
- signing_key:
79
+ rubygems_version: 3.1.6
80
+ signing_key:
81
81
  specification_version: 4
82
82
  summary: Make Elastic Beanstalk easier to work with.
83
83
  test_files: []