datasift 3.5.1 → 3.5.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 +4 -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: b02269afad134b1065df764ff2a4c4400a96d55c
|
|
4
|
+
data.tar.gz: b7f6cede19b4a62ee7a1eeaa3784fa01bcba3c1a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ecb7edc5b1e12329c021b156b245cc1eaba269116618f5daad8c5486c854ee368e28325623c84089da199a9ed497fa69ba91718711946d7285f5b1b0f855366
|
|
7
|
+
data.tar.gz: 1aaaf7b124c91ab0be40d32c21a16feab784291c50b7feda1dcba3d0e5649ee03ac3f1aa233c836acd59a6c1ebd503f449e77030d60dc4c7d9fd1a0f1220d840
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
CHANGELOG
|
|
2
2
|
================================
|
|
3
|
+
## v.3.5.2 (2016-11-08)
|
|
4
|
+
### Fixes
|
|
5
|
+
* Uses correct timestamp params in PYLON Sample API calls. `start_time` -> `start` and `end_time` -> `end`
|
|
6
|
+
|
|
3
7
|
## v.3.5.1 (2016-10-06)
|
|
4
8
|
### Added
|
|
5
9
|
* Explicit support for 500 and 502 responses from the API
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.5.
|
|
1
|
+
3.5.2
|
data/lib/pylon.rb
CHANGED
|
@@ -131,8 +131,8 @@ module DataSift
|
|
|
131
131
|
fail BadParametersError, 'hash is required' if hash.empty?
|
|
132
132
|
params = { hash: hash }
|
|
133
133
|
params.merge!(count: count) unless count.nil?
|
|
134
|
-
params.merge!(
|
|
135
|
-
params.merge!(
|
|
134
|
+
params.merge!(start: start_time) unless start_time.nil?
|
|
135
|
+
params.merge!(end: end_time) unless end_time.nil?
|
|
136
136
|
|
|
137
137
|
if filter.empty?
|
|
138
138
|
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.5.
|
|
4
|
+
version: 3.5.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
|