neptuno 1.0.3 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc5c137a5e60f1053dd23e6b9929aa4f8b1ee3065cab26216e569199181ed508
4
- data.tar.gz: 22e29304ab72a4b63151c22a66f4e7f15ea2e476a2fa72a7255731e7a637a763
3
+ metadata.gz: 9fae466d455aa821936b90939ba0a855a643ed38a3f04ae348aad5084a222a69
4
+ data.tar.gz: edb31dfae133228fe6a8e0c67ffdd21e2f2cc6b101e90a3df69fbe35ed24b2be
5
5
  SHA512:
6
- metadata.gz: d32cbe96d1f119cebcec05bc84757a72e5d3fa8473c58ff15522df6e14b1fab1bf8394dbb25de072f18fcd9e193b77c96c4807bae4ea1effacdab4a2e015de58
7
- data.tar.gz: f75d7bb97ee9fe7d3fffbcc281459d0cdb17e0b8045b9346518038d1d22c54a250847eb0afeae528aa440742a4d009f487d76f2159555f0fd2411327b1007a16
6
+ metadata.gz: 38e0e81a410f573bef3fc80185e3a43f32e927f13d58fb736bd24dc7174e9b4030b9b4f9bfef985555b1af868f81dc52b8f125468019751e887444314734cab2
7
+ data.tar.gz: e31f2426d4b53f8ea75812e3a87f714fc926ffa7f5b5d69199d5f2301498ddbab1ecfceebbd754083b492e50714eb9c2db9983edc4aad8aa6cf2910635ef780f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- neptuno (1.0.3)
4
+ neptuno (1.0.4)
5
5
  dotiw
6
6
  dry-cli
7
7
  hirb
data/README.md CHANGED
@@ -59,7 +59,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
59
59
 
60
60
  ## Contributing
61
61
 
62
- Bug reports and pull requests are welcome on GitHub at https://github.com/robertoplancarte/neptuno. 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/[USERNAME]/neptuno/blob/master/CODE_OF_CONDUCT.md).
62
+ Bug reports and pull requests are welcome on GitHub at https://github.com/apptegy/neptuno. 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/[USERNAME]/neptuno/blob/master/CODE_OF_CONDUCT.md).
63
63
 
64
64
  ## License
65
65
 
data/docs/splash.png CHANGED
Binary file
@@ -24,7 +24,8 @@ module Neptuno
24
24
  end.to_h
25
25
 
26
26
  begin
27
- docker_containers = system('docker compose ps', exception: true).lines[1..]
27
+ docker_containers = `docker compose ps`.lines[1..]
28
+ raise if $?.exitstatus != 0
28
29
  rescue RuntimeError
29
30
  exit
30
31
  end
@@ -88,7 +88,6 @@ module Neptuno
88
88
  begin
89
89
  system("cd #{neptuno_path}/procfiles/#{services.first} && overmind connect shell", exception: true)
90
90
  rescue RuntimeError
91
- puts 'sry'
92
91
  system("cd #{neptuno_path} && docker compose exec #{service} kill -9 -1")
93
92
  system("cd #{neptuno_path}/procfiles/#{service} && rm .overmind.sock > /dev/null 2>&1")
94
93
  system("cd #{neptuno_path}/procfiles/#{service} && overmind start -D -N > /dev/null 2>&1")
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Neptuno
4
- VERSION = '1.0.3'
4
+ VERSION = '1.0.5'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neptuno
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roberto Plancarte
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-16 00:00:00.000000000 Z
11
+ date: 2022-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotiw