deploy_pin 1.5.0 → 1.5.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c21646b048b09408bf131ab463208e76dd54b18596dcdfce4c16fae3fa1669f1
|
|
4
|
+
data.tar.gz: 5ac45e42ba5a3af95dadbf44031e683997f8fe42a8e422f1d7114f5007437e8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6137f6270259681a0a74188e1a0145894d25eb77bde43d8ed47b9dea38c1ab7733ca618b44ac04d15e6ebbaf3f565200cb09af3ee91e8f9b2fca756ee9c5c250
|
|
7
|
+
data.tar.gz: 8551c4fadd20f97cd19584566408a115d42a9402b45b46fba4c4fdf6e94b3f1b9b074136287b814ca3ff1603bfe77b5fa51bbc9814fcdf1ef59f421dd6052025
|
data/README.md
CHANGED
|
@@ -119,6 +119,7 @@ If you want to use a different value than the default, you need to specify it ex
|
|
|
119
119
|
# Some deploy_pin task
|
|
120
120
|
# 20190401135040:I
|
|
121
121
|
# task_title: Execute some query with timeout
|
|
122
|
+
# affected_areas: none
|
|
122
123
|
|
|
123
124
|
# === task code goes down here ===
|
|
124
125
|
DeployPin::Database::execute_with_timeout do
|
data/lib/deploy_pin/database.rb
CHANGED
|
@@ -21,6 +21,7 @@ module DeployPin
|
|
|
21
21
|
# # <app root>/deploy_pin/20190401135040_task.rb
|
|
22
22
|
# # 20190401135040:I
|
|
23
23
|
# # task_title: Execute some query with timeout
|
|
24
|
+
# # affected_areas: none
|
|
24
25
|
#
|
|
25
26
|
# # === task code goes down here ===
|
|
26
27
|
# DeployPin::Database::execute_with_timeout do
|
data/lib/deploy_pin/version.rb
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# <%= @identifier %>:<%= @group %><%= @recurring ? ":recurring" : "" %>
|
|
4
4
|
# task_title: <%= @author ? "@#{@author} #{title.titleize}" : "#{title.titleize}" %>
|
|
5
|
+
# affected_areas: none
|
|
5
6
|
|
|
6
7
|
# === parallel task code goes down here ===
|
|
7
8
|
10.times { DeployPin::Record.create(uuid: "hello") }
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# <%= @identifier %>:<%= @group %><%= @recurring ? ":recurring" : "" %>
|
|
4
4
|
# task_title: <%= @author ? "@#{@author} #{title.titleize}" : "#{title.titleize}" %>
|
|
5
|
+
# affected_areas: none
|
|
5
6
|
|
|
6
7
|
# === task code goes down here ===
|
|
7
8
|
progressbar = ProgressBar.create(title: "Doing stuff", total: 20, format: '%t |%E | %B | %a')
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: deploy_pin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Viktor Sych
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-09-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colorize
|
|
@@ -271,7 +271,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
271
271
|
- !ruby/object:Gem::Version
|
|
272
272
|
version: '0'
|
|
273
273
|
requirements: []
|
|
274
|
-
rubygems_version: 3.
|
|
274
|
+
rubygems_version: 3.5.11
|
|
275
275
|
signing_key:
|
|
276
276
|
specification_version: 4
|
|
277
277
|
summary: pin some task around deployment
|