pinky 0.1.1-java → 0.1.2-java
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.
- data/VERSION +1 -1
- data/lib/pinky/energizer_bunny/subscription.rb +1 -1
- data/pinky.gemspec +2 -2
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
|
@@ -19,7 +19,6 @@ module Pinky
|
|
|
19
19
|
def listen!
|
|
20
20
|
@subscription = @queue.subscribe(@subscription_opts) do |headers, msg|
|
|
21
21
|
handle_message_on_other_thread headers, msg
|
|
22
|
-
headers.ack
|
|
23
22
|
end
|
|
24
23
|
self
|
|
25
24
|
end
|
|
@@ -27,6 +26,7 @@ module Pinky
|
|
|
27
26
|
mailslot :exception => :log_error
|
|
28
27
|
def handle_message_on_other_thread headers, msg
|
|
29
28
|
@handle_message.call headers.properties.headers, msg
|
|
29
|
+
headers.ack
|
|
30
30
|
end
|
|
31
31
|
|
|
32
32
|
def log_error e
|
data/pinky.gemspec
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "pinky"
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.2"
|
|
9
9
|
s.platform = "java"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.authors = ["Joel Friedman"]
|
|
13
|
-
s.date = "2012-
|
|
13
|
+
s.date = "2012-12-06"
|
|
14
14
|
s.description = "Cache your api objects in member easier, with associations."
|
|
15
15
|
s.email = "asher.friedman@gmail.com"
|
|
16
16
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
name: pinky
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.1.
|
|
5
|
+
version: 0.1.2
|
|
6
6
|
platform: java
|
|
7
7
|
authors:
|
|
8
8
|
- Joel Friedman
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-12-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: httparty
|