deploy_pin 1.7.1 → 1.7.2
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/README.md +3 -2
- data/lib/deploy_pin/task.rb +6 -0
- data/lib/deploy_pin/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: 92739dddf68cb804a3d4e76873afcaa11bcf5481ebcf8dd45d277ae992616eb7
|
4
|
+
data.tar.gz: 729e8e6401392109892d868613e996517a56e476a01f74ed968a6fd79d5c9f0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4655ced6a71eec2d98aa92e30cd5a16584c50b02b7d3757b8bd7a5c6898d6b93a904944d8e9ce478a80889e62f76ac78c6808b533ff004546cab4e33965a4e02
|
7
|
+
data.tar.gz: 105bef59cd93ba4a9c2fe88e8c60c75ce000439810c346359fcb9f823cdb025cf989137216a5f74c8aa5f212672ebc06df42feac1c2247dee745ea40b36e8d4a
|
data/README.md
CHANGED
@@ -178,7 +178,7 @@ To use a different formatting value than the default, you need to specify it exp
|
|
178
178
|
|
179
179
|
## Resumable Tasks
|
180
180
|
|
181
|
-
When working with long-running code that processes a large dataset, it makes sense to store progress in the database to allow resuming the task later. You can do this by using the `DeployPin::Task` instance methods: `#progress` and `#increment_progress(num)`.
|
181
|
+
When working with long-running code that processes a large dataset, it makes sense to store progress in the database to allow resuming the task later. You can do this by using the `DeployPin::Task` instance methods: `#progress`, `#save_progress!(num)` and `#increment_progress!(num)`.
|
182
182
|
|
183
183
|
Here is an example of how to use these methods:
|
184
184
|
|
@@ -190,7 +190,8 @@ Here is an example of how to use these methods:
|
|
190
190
|
# The progress is 0 by default
|
191
191
|
Users.where(id: progress..).find_each do |user|
|
192
192
|
# Do some work
|
193
|
-
increment_progress(1) # Increment progress by 1 and store it in the database so you can resume the task from this point
|
193
|
+
increment_progress!(1) # Increment progress by 1 and store it in the database so you can resume the task from this point
|
194
|
+
# or save_progress!(user.id) # Save the progress as the user id
|
194
195
|
end
|
195
196
|
```
|
196
197
|
|
data/lib/deploy_pin/task.rb
CHANGED
@@ -54,6 +54,12 @@ module DeployPin
|
|
54
54
|
record.increment!(:progress, incrementor)
|
55
55
|
end
|
56
56
|
|
57
|
+
def save_progress!(value)
|
58
|
+
raise NotImplementedError, 'Recurring tasks do not support progress yet.' if recurring
|
59
|
+
|
60
|
+
record.update(progress: value)
|
61
|
+
end
|
62
|
+
|
57
63
|
def done?
|
58
64
|
return if recurring
|
59
65
|
return unless record
|
data/lib/deploy_pin/version.rb
CHANGED
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.7.
|
4
|
+
version: 1.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Viktor Sych
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colorize
|