shards 2.5.4 → 2.5.6
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/Gemfile.lock +2 -2
- data/lib/settings/workflows/base.yaml +1 -1
- data/lib/shards/repo.rb +3 -2
- data/lib/shards/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d7f8aad307365d8121f09239020905620671df754eb25a6b8f89661efc1c603f
|
|
4
|
+
data.tar.gz: cfcfbdb9e87dcc616582508bccbb20082c4ea74c93f36497ed54e575fd9368e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63157577445971cedc476182413a7d92979c4319193655d23408a0d304beaad842fa66837dba656ecd48665e5ef80e8a00721e2a838e95f2cbce42994a10ef84
|
|
7
|
+
data.tar.gz: 5e3abf86b7641b7f94f8e5dedffc707459b79e4e9fd8ef09cbe5f0d23e196063aaf3ab53afeac40ce3ad08217a917ea4a1efbd83e15f91c4fdf543f719de4f3b
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
shards (2.5.
|
|
4
|
+
shards (2.5.6)
|
|
5
5
|
aws-sdk-ec2 (~> 1.48)
|
|
6
6
|
aws-sdk-elasticloadbalancing (~> 1.5)
|
|
7
7
|
aws-sdk-elasticloadbalancingv2 (~> 1.14)
|
|
@@ -107,4 +107,4 @@ DEPENDENCIES
|
|
|
107
107
|
shards!
|
|
108
108
|
|
|
109
109
|
BUNDLED WITH
|
|
110
|
-
1.
|
|
110
|
+
1.17.2
|
|
@@ -69,7 +69,7 @@ shared_steps:
|
|
|
69
69
|
wrong: finish
|
|
70
70
|
wrong_message: This is the %dth loop. The maximun is (%d).
|
|
71
71
|
total_loops: 3
|
|
72
|
-
seconds_between_loop:
|
|
72
|
+
seconds_between_loop: 300
|
|
73
73
|
|
|
74
74
|
dns_upsert:
|
|
75
75
|
message: The dns record with the host %s has been succesfully created.
|
data/lib/shards/repo.rb
CHANGED
|
@@ -20,14 +20,15 @@ module Shards
|
|
|
20
20
|
def clean
|
|
21
21
|
@@times+=1
|
|
22
22
|
git.reset_hard
|
|
23
|
-
git.clean
|
|
23
|
+
git.clean force: true, d: true
|
|
24
24
|
git.branch(live_branch).checkout
|
|
25
|
-
git.pull
|
|
25
|
+
git.pull 'origin', live_branch
|
|
26
26
|
end
|
|
27
27
|
|
|
28
28
|
def autocommit
|
|
29
29
|
git.add all: true
|
|
30
30
|
git.commit autocommit_message
|
|
31
|
+
git.pull 'origin', live_branch
|
|
31
32
|
git.push 'origin', live_branch
|
|
32
33
|
end
|
|
33
34
|
|
data/lib/shards/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shards
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.5.
|
|
4
|
+
version: 2.5.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Diego PL
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|