riddl 0.99.158 → 0.99.159
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 +4 -4
- data/lib/ruby/riddl/utils/notifications_producer.rb +1 -0
- data/riddl.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61e958567ba99d273395bdb602c38deaad402d6c
|
|
4
|
+
data.tar.gz: 53209f5e134c882c7de00ef9ad20799642c5e2de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f231514f177380b56a97f2053734c01ce773e9a31a352b234ea9f8f62f6cc3820d595c7de10620b57806fc1784db7a74bec250db6404a3976fb680762ab1cc2c
|
|
7
|
+
data.tar.gz: dca34af094818cabdf0bb1c8d32277aa751e91f51bb7de6fb01f58fd0646424491b7c6ef17198e61001048de05a67476ab5dcc4687327e1de3eceaf6a648e737
|
|
@@ -113,6 +113,7 @@ module Riddl
|
|
|
113
113
|
File.open(@target + '/' + key + '/producer-secret','w') { |f| f.write producer_secret }
|
|
114
114
|
File.open(@target + '/' + key + '/consumer-secret','w') { |f| f.write consumer_secret }
|
|
115
115
|
XML::Smart::modify(@target + '/' + key + '/subscription.xml',"<subscription xmlns='http://riddl.org/ns/common-patterns/notifications-producer/1.0'/>") do |doc|
|
|
116
|
+
doc.register_namespace 'n', 'http://riddl.org/ns/common-patterns/notifications-producer/1.0'
|
|
116
117
|
block.call doc, key
|
|
117
118
|
end
|
|
118
119
|
[key, producer_secret, consumer_secret]
|
data/riddl.gemspec
CHANGED