datasift 3.7.1 → 3.7.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/VERSION +1 -1
- data/lib/pylon.rb +2 -2
- 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: 59b54254c46ce1e8e158d0bbbfee1f4b6b8c11c8
|
|
4
|
+
data.tar.gz: 0d3e76374db8ce157e3e69850a78d3827044c26e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06accc8e50f6334bba9baa2da4616433a1c9eb136fbee0c5bbb7556f29d3ea25de65bd6b071ba11d6fd2e75ed9a51cc2631e39aca3f8321897115bc70cbe472a
|
|
7
|
+
data.tar.gz: 032ef58aa25a045d126c64d1edb8d89709c8c8047dd6f4c0bc06461a70a7b771e29fd6bfdcaf0143d135db12a69ab843515d7e86d64a34a7b8922ec58a92162a
|
data/CHANGELOG.md
CHANGED
|
@@ -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.7.2 (2016-11-08)
|
|
11
|
+
### Fixes
|
|
12
|
+
* Uses correct timestamp params in PYLON Sample API calls. `start_time` -> `start` and `end_time` - `end`
|
|
13
|
+
|
|
10
14
|
## v.3.7.1 (2016-10-06)
|
|
11
15
|
### Added
|
|
12
16
|
* Explicit support for 500 and 502 responses from the API
|
|
@@ -33,6 +37,10 @@ CHANGELOG
|
|
|
33
37
|
* Support for the [/pylon/update](http://dev.datasift.com/docs/platform/api/rest-api/endpoints/pylonupdate) API endpoint
|
|
34
38
|
* Support for [API v1.3](http://dev.datasift.com/docs/platform/api/api-changelog)
|
|
35
39
|
|
|
40
|
+
## v.3.5.2 (2016-11-08)
|
|
41
|
+
### Fixes
|
|
42
|
+
* Uses correct timestamp params in PYLON Sample API calls. `start_time` -> `start` and `end_time` - `end`
|
|
43
|
+
|
|
36
44
|
## v.3.5.1 (2016-10-06)
|
|
37
45
|
### Added
|
|
38
46
|
* Explicit support for 500 and 502 responses from the API
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.7.
|
|
1
|
+
3.7.2
|
data/lib/pylon.rb
CHANGED
|
@@ -174,8 +174,8 @@ module DataSift
|
|
|
174
174
|
params.merge!(hash: hash) unless hash.empty?
|
|
175
175
|
params.merge!(id: id) unless id.empty?
|
|
176
176
|
params.merge!(count: count) unless count.nil?
|
|
177
|
-
params.merge!(
|
|
178
|
-
params.merge!(
|
|
177
|
+
params.merge!(start: start_time) unless start_time.nil?
|
|
178
|
+
params.merge!(end: end_time) unless end_time.nil?
|
|
179
179
|
|
|
180
180
|
if filter.empty?
|
|
181
181
|
DataSift.request(:GET, 'pylon/sample', @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.7.
|
|
4
|
+
version: 3.7.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-
|
|
13
|
+
date: 2016-11-08 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rest-client
|