propono 0.4.0 → 0.5.0
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/lib/propono/components/queue_subscription.rb +1 -1
- data/lib/propono/version.rb +1 -1
- data/test/queue_subscription_test.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NTI0YmY4MWZjYThiZDUxOGZiMTI0NzQwNWZlMjMyZDE0MjAyOGU5ZQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NTk0YmM5NThlZjAxNTA2YzUyNGRkOTVjZGRmZTU0MThhMDcwYjlmMQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MTY5ZjU1YzY5NTYyN2M5MDdiYTc1ZjM5YmJmZWNkMjA4MTFjMDkyODU3YTM4
|
10
|
+
NmJiYzQ5YTA0YjMzOTNhNjVlZDhlOGMwOWQ2MWE4MDQwMzQ5NDU3NWUxOWQx
|
11
|
+
YTFiZDhiYmIxNmE0NWMyNTI5NmFhZDk4NDBlZmFhMWNlYTI4Njc=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OTM5MWZhNWRlYzg5OWRkOTBhYzA0NjUzNDMwNzYyOGE2MWQ3MTdmZTExNzE2
|
14
|
+
NWFiMmYxYWU2ZTk3MTBjNDhlYjRjYjhhZmIwYTAxYTE1NTEwZDgyNmFjN2Qw
|
15
|
+
NzQ5YWMxZTgzNTQ2ZDJjNDk2NjUxYmQ4YTIzN2MxNzEzZmYyOTM=
|
data/lib/propono/version.rb
CHANGED
@@ -28,7 +28,7 @@ module Propono
|
|
28
28
|
topic_id = "Foobar"
|
29
29
|
subscription = QueueSubscription.new(topic_id)
|
30
30
|
|
31
|
-
assert_equal subscription.send(:queue_name), "MyApp
|
31
|
+
assert_equal subscription.send(:queue_name), "MyApp-Foobar"
|
32
32
|
end
|
33
33
|
|
34
34
|
def test_subscription_queue_name_with_spaces
|
@@ -37,7 +37,7 @@ module Propono
|
|
37
37
|
topic_id = "Foobar"
|
38
38
|
subscription = QueueSubscription.new(topic_id)
|
39
39
|
|
40
|
-
assert_equal subscription.send(:queue_name), "My_App
|
40
|
+
assert_equal subscription.send(:queue_name), "My_App-Foobar"
|
41
41
|
end
|
42
42
|
|
43
43
|
def test_create_calls_create
|