zendesk_api 1.9.0 → 1.9.1
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/zendesk_api/collection.rb +1 -0
- data/lib/zendesk_api/version.rb +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: d2000c3064ced80b9b513704706682fa6efb3d6b
|
4
|
+
data.tar.gz: e0fbd470852268138644db6aa575cf0a71888daf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f40fb7707d4bbcea88dacdf5d2934b6e34f5f3fdadc9bb9504b841e11626297fcb525c505919bfa974afe6f8b30d341609d6d240ffc30440a18e00c06176bf1
|
7
|
+
data.tar.gz: 63e7bd253035206f09e9db2ba99c12befaae9e99e54fa019d34f1bed720ce96b755de11ab6d0e090d7c1b089a0a5971a48d35a60c9ac69e8d9d8faab40c88211
|
@@ -48,6 +48,7 @@ module ZendeskAPI
|
|
48
48
|
|
49
49
|
methods = %w{create find update destroy}
|
50
50
|
methods += methods.map {|method| method + "!"}
|
51
|
+
methods += %w{create_many! destroy_many!}
|
51
52
|
methods.each do |deferrable|
|
52
53
|
# Passes arguments and the proper path to the resource class method.
|
53
54
|
# @param [Hash] options Options or attributes to pass
|
data/lib/zendesk_api/version.rb
CHANGED