redis_mutex 0.0.1.pre.alpha.pre.2 → 0.0.1.pre.alpha.pre.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 +8 -8
- data/.travis.yml +4 -0
- data/README.md +2 -0
- data/Rakefile +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
|
+
MDI0ZWY4NWIxODU4ZTM0MzVhMGM2YzIzOGQ5NWYyZjk5NmQ5NGI1Mg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YWE2OTZlODg4ZjlmMzRhMWZjNWViYmY0NjMxYWJkYWE4ODU1YzQ5NQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NDhiZWQyYzNhYmFmYTk3Y2Y0NzY5N2U3YWQwNGU1MjczY2E4NTk0MGU5Mzg4
|
10
|
+
MzU2MjM2YWQ5NmFlZDhhNTZlYTRlMTQyZTQ2YzNlZGNiOWY0NjYxNDAxNzBm
|
11
|
+
ODU1NDRiNWQ3Yjc0ZWNjOGFlYTRiNzI3MThiNGQxNjUyMmViNzA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
Y2Q2NjBlYTZjZDk1YzQ2NWQ5YTc2MTFhOTU1NjMzYWQ1NzUxNTNlZjZmYjU4
|
14
|
+
MTJkNTlkYTUyNzlkZmRlZDQxY2E0YWRkNGQ3ZDc0NDdhMDYxNmYxODJiNmUy
|
15
|
+
ODc2NTc4ODAzZDY5ZGZiYjlmZTM2YzkxM2JkYTAyYTFhYmY3ODc=
|
data/.travis.yml
CHANGED
@@ -12,6 +12,7 @@ before_script:
|
|
12
12
|
- sudo add-apt-repository ppa:chris-lea/redis-server -y
|
13
13
|
- sudo apt-get update -q
|
14
14
|
- sudo apt-get install redis-server
|
15
|
+
- sudo start redis-server
|
15
16
|
|
16
17
|
deploy:
|
17
18
|
provider: rubygems
|
@@ -20,3 +21,6 @@ deploy:
|
|
20
21
|
gem: redis_mutex
|
21
22
|
on:
|
22
23
|
repo: GoodGuide/redis_mutex
|
24
|
+
|
25
|
+
notifications:
|
26
|
+
slack: goodguide:ht5WFmKFhguaSwbDaIIr8kur
|
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# RedisMutex
|
2
2
|
|
3
|
+
[](https://travis-ci.org/GoodGuide/redis_mutex)
|
4
|
+
|
3
5
|
This gem provides very simple distributed pessimistic locking using Redis.
|
4
6
|
|
5
7
|
It provides no API, at present, for a blocking lock operation. For our purposes, we don't require blocking, as we're using this within a Sidekiq work fetcher, which already has polling semantics (and in which the order of fetchers attempting to lock isn't important).
|
data/Rakefile
CHANGED