redis-em-mutex 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/HISTORY.rdoc ADDED
@@ -0,0 +1,10 @@
1
+ 0.1.1
2
+ - fixed: namespaces didn't work
3
+ - added namespaces spec
4
+ - fixed: rare race condition could raise ArgumentError inside Mutex#lock()
5
+ - fixed: Mutex.stop_watching raised MutexError after changing internal state
6
+ - fixed: semaphores spec updated
7
+ - fixed: ruby-1.9.1 has no SecureRandom.uuid method
8
+
9
+ 0.1.0
10
+ - first release
data/README.rdoc CHANGED
@@ -26,7 +26,7 @@ Author:: Rafał Michalski (mailto:rafal@yeondir.com)
26
26
  * only for EventMachine
27
27
  * NOT thread-safe
28
28
  * locking order between concurrent processes is undetermined (no FIFO)
29
- * its not nifty, rather somewhat complicated
29
+ * it's not nifty, rather somewhat complicated
30
30
 
31
31
  == REQUIREMENTS
32
32
 
@@ -41,7 +41,7 @@ Author:: Rafał Michalski (mailto:rafal@yeondir.com)
41
41
 
42
42
  ==== Gemfile
43
43
 
44
- gem "redis-em-mutex", "~> 0.1.0"
44
+ gem "redis-em-mutex", "~> 0.1.1"
45
45
 
46
46
  ==== Github
47
47