serially 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +1 -0
- data/lib/serially/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjYyNjdiNjVhMzJhYWQ4M2NmMTRkMDU2YmJhYjUxNjQ3NDM1NjQ5Mg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MDg2NDk4NjBkOGY4MzYxMjlkZTA5OTZlNzZhY2U5NTk3MmZhMmJjZQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NzQzMDdjZDFiYzkwMzQ4NTNjMzAwYTRkZjVlN2M0NjRkYTRiY2RhN2UzYWYx
|
10
|
+
MjA2ODNiMDAzZDVlY2MwNmUyODBmYjAxNzAxMTVlMmYzYmYwYzk5MDZlMjgy
|
11
|
+
NTBlNGVjNzc3ZDhmNmJlZjk1OTQ2ODI2YTBmZTAwNmY4MWRjMTk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MzYyYWE3ZWJlMzlhOWVhYzNlNTI3OGU2YWIzZjhjYWJmYjBmM2Y0MmI4MGEz
|
14
|
+
NDUzNzQ3Zjk0NGU4MDQ1MWQzZWYzODg4NDlkOGEwZDE1ODI3MmI3OTg1NzVm
|
15
|
+
M2Y5YmQ4Nzg2YmRhOTE5NjA0ZmU1YmRkMWM1NjYyZTA0NGM4MGQ=
|
data/README.md
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
[![Build Status](https://circleci.com/gh/mikemarsian/serially.svg?&style=shield&circle-token=93a8f2925ebdd64032108118ef6e17eb3848d767)](https://circleci.com/gh/mikemarsian/serially)
|
4
4
|
[![Code Climate](https://codeclimate.com/github/mikemarsian/serially/badges/gpa.svg)](https://codeclimate.com/github/mikemarsian/serially)
|
5
|
+
[![Gem Version](https://badge.fury.io/rb/serially.svg)](https://badge.fury.io/rb/serially)
|
5
6
|
|
6
7
|
Have you ever had a class whose instances required a series of background tasks to run serially, strictly one after another? Than Serially is for you.
|
7
8
|
Declare the tasks using a simple DSL in the order you want them to to run. The tasks for each instance will run inside a separate Resque job, in a queue you specify. The next task will run only if the previous one has finished successfully. All task runs are written to DB and can be inspected.
|
data/lib/serially/version.rb
CHANGED