contentful-scheduler-custom 1.5.7.1.2 → 1.5.7.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +2 -2
- data/example/Gemfile +1 -1
- data/lib/contentful/scheduler/queue.rb +2 -2
- data/lib/contentful/scheduler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a496129cfbdd3c1baf7c98bd91ff410838b5dfd8
|
4
|
+
data.tar.gz: e26016c832f991908e7fb4b81fbcc6d0c8ebed47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1a74dfb513a1215bc97f90ae34064a86b17e181654710b557d197f7f024d6ef71abfb29baa3f7589749c9c7373512b5ef9ffa2238f0a63304a1249e4d8073d3
|
7
|
+
data.tar.gz: ef2921b155568128158ee35b9385d86b8ad2255be97ad741f0eb52b399348f8489b437b94225105859ecb0b7fadb84fed36a21b9c6e720ef25d779d659d26e17
|
data/.travis.yml
CHANGED
data/example/Gemfile
CHANGED
@@ -212,11 +212,11 @@ module Contentful
|
|
212
212
|
end
|
213
213
|
|
214
214
|
def webhook_publish_field?(webhook)
|
215
|
-
webhook.fields.key?(spaces.fetch(webhook.space_id, {})[:publish_field])
|
215
|
+
webhook.fields.key?(spaces.fetch(webhook.space_id, {})[:publish_field]) if webhook.respond_to?(:fields)
|
216
216
|
end
|
217
217
|
|
218
218
|
def webhook_unpublish_field?(webhook)
|
219
|
-
webhook.fields.key?(spaces.fetch(webhook.space_id, {})[:unpublish_field])
|
219
|
+
webhook.fields.key?(spaces.fetch(webhook.space_id, {})[:unpublish_field]) if webhook.respond_to?(:fields)
|
220
220
|
end
|
221
221
|
|
222
222
|
def webhook_publish_field(webhook)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: contentful-scheduler-custom
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.7.1.
|
4
|
+
version: 1.5.7.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Contentful GmbH (David Litvak Bruno0
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: contentful-webhook-listener
|