datasift 3.6.1 → 3.6.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c8f986a3417e54c81bc7dc41877fa5f311a19db6
4
- data.tar.gz: 89e893af5a7fefae34e9951ed948d1a0ae71d94b
3
+ metadata.gz: 8123bb2dffb7eea87a7492c896349ffd24b39732
4
+ data.tar.gz: b1b7962675565e62df6a02668b03fdbc1f94cf42
5
5
  SHA512:
6
- metadata.gz: d439fd0eb7416b7bb2c8f6adebde7342161c0d65d6ff2e0a0b8a666250b6954f65dd3375868fa035120e6c0961692eae98a3d869b7f80a06a762080969cb55a5
7
- data.tar.gz: a7dea7f0e79f1c31e3703006d65bd2eced6a355e8eccbcfc5d0c27bbc525db82138855d6b4ad273bd396c463e672dc2cf3f4013ca2de3eb9a4f727e19b49cf09
6
+ metadata.gz: e27a1185e9902ab2c21d4f3a824b00805c7bd24a7b60c24669a722a9981fd254535e0dc8ef44c4e69e9364cedabb9888f0bf1fd7e52822acf1a223733ae4096f
7
+ data.tar.gz: fc205dc45efc34f72b475f18179a56a8ddc861f84d9adb38d48b8a3a9fb4ebe167a875eb1f20f61f9eea6d83f121fc83e84f186d4074e53cef5200eb13319bc7
@@ -7,6 +7,10 @@ CHANGELOG
7
7
  * Designed to make the most of DataSift's latest API version and features
8
8
  * Designed for Ruby 2.3+. Use features like keyword parameters across the board
9
9
 
10
+ ## v.3.6.2 (2016-06-03)
11
+ ### Fixed
12
+ * Corrected params used in the `managed_source_auth.remove()` method. Thanks [@zenovich](https://github.com/zenovich)
13
+
10
14
  ## v.3.6.1 (2016-03-08)
11
15
  ### Fixed
12
16
  * Use API v1.3 by default
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.6.1
1
+ 3.6.2
@@ -26,7 +26,7 @@ module DataSift
26
26
  def remove(id, auth_ids)
27
27
  params = {
28
28
  id: id,
29
- auth: auth_ids
29
+ auth_ids: auth_ids
30
30
  }
31
31
  requires params
32
32
  DataSift.request(:PUT, 'source/auth/remove', @config, params)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: datasift
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.1
4
+ version: 3.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - DataSift
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-03-08 00:00:00.000000000 Z
13
+ date: 2016-06-03 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client
@@ -203,7 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
203
203
  version: 1.3.5
204
204
  requirements: []
205
205
  rubyforge_project:
206
- rubygems_version: 2.4.8
206
+ rubygems_version: 2.6.3
207
207
  signing_key:
208
208
  specification_version: 4
209
209
  summary: DataSift is a simple wrapper for the DataSift API.