rascal 0.3.4 → 0.3.5

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: f4bf3ad1b4529196db3df33c0748dcc511b334d99c02ab457c74cb821eff8a1b
4
- data.tar.gz: c3c7f9f856febd21b23195621081c0f22c63336c1f8e0362b1864cd0d3e365d1
3
+ metadata.gz: 190a2efecea68bc713a78cb62454529f2228af52529efd708301f0f78f1e7c87
4
+ data.tar.gz: 90126db4ae82863742144d82777c0a3862f927dbf5c13f08c9ae5f27be54d261
5
5
  SHA512:
6
- metadata.gz: 56f02d5f64b911abde9dcc6ee44def8fec82ab78705b3879f171589f68b4aa662473e0bc8e372bb1122dc739c9762c9b3d8ba9295817410224951b226e044cfd
7
- data.tar.gz: dec85393c9074c9ad305962e051e5b0dc49671d5e84a2acba653840ed11c33e60cbed83a8975ef824485c5becfeea9261e4d88a84a358ffe9bf12035b61a6f25
6
+ metadata.gz: d366ae2838d464a4178df419f22ffdd08d6525f2fd6a06e830e620033fade39462c836acca86ebeaac0e562c9591dcecb1b8e304d858bc5f081edeb14098bfa1
7
+ data.tar.gz: 10ecd7318f88af5a2bf634d1b68c92b8a51de957f6bf16a7d3121d8d36224706a406e2a8bf188de3ba34433079c7459ae6e7b1860ee6b0452c20baa502d4a4a7
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project will be documented here.
4
4
 
5
5
  Rascal follows semantic versioning. This has little consequence pre 1.0, so expect breaking changes.
6
6
 
7
+ ## 0.3.5 (2022-12-21)
8
+
9
+ - Fix the "endpoint ... already exists in network" error.
10
+
11
+
7
12
  ## 0.3.4 (2022-03-16)
8
13
 
9
14
  - Activate Rubygems MFA
@@ -112,8 +112,6 @@ module Rascal
112
112
  @image
113
113
  end
114
114
 
115
- private
116
-
117
115
  def id
118
116
  @id ||= Docker.interface.run(
119
117
  'container',
@@ -125,6 +123,8 @@ module Rascal
125
123
  )
126
124
  end
127
125
 
126
+ private
127
+
128
128
  def image_exists?
129
129
  Docker.interface.run(
130
130
  'image',
@@ -14,6 +14,17 @@ module Rascal
14
14
  )
15
15
  end
16
16
 
17
+ def disconnect(container_id)
18
+ Docker.interface.run(
19
+ 'network',
20
+ 'disconnect',
21
+ id,
22
+ container_id,
23
+ )
24
+ rescue Interface::Error => e
25
+ raise unless e.message.include?('is not connected')
26
+ end
27
+
17
28
  def exists?
18
29
  !!id
19
30
  end
@@ -17,6 +17,9 @@ module Rascal
17
17
 
18
18
  def start_if_stopped(network: nil)
19
19
  unless @container.running?
20
+ if (container_id = @container.id)
21
+ network.disconnect(container_id)
22
+ end
20
23
  @container.start(network: network, network_alias: @alias, volumes: @volumes, env: @env_variables, command: @command)
21
24
  end
22
25
  end
@@ -1,3 +1,3 @@
1
1
  module Rascal
2
- VERSION = "0.3.4"
2
+ VERSION = "0.3.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rascal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Kraze
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-16 00:00:00.000000000 Z
11
+ date: 2022-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -92,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
92
  - !ruby/object:Gem::Version
93
93
  version: '0'
94
94
  requirements: []
95
- rubygems_version: 3.3.9
95
+ rubygems_version: 3.3.22
96
96
  signing_key:
97
97
  specification_version: 4
98
98
  summary: Spin up CI environments locally.