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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/VERSION +1 -1
  4. data/lib/pylon.rb +2 -2
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fe305d23648d41d808a86c13411481f7bdf75129
4
- data.tar.gz: 6e90471c5872a20097cc4170422bc9695aca777f
3
+ metadata.gz: b02269afad134b1065df764ff2a4c4400a96d55c
4
+ data.tar.gz: b7f6cede19b4a62ee7a1eeaa3784fa01bcba3c1a
5
5
  SHA512:
6
- metadata.gz: b25f41df2312e59b7850ac67fabedce030d8fd2f3c5ff0fc0bec6b7770deab01e8066f081d4d2cbcee239e14dd68c3f8e264abf245e8cb533a4b2a30f9ac536d
7
- data.tar.gz: 6a44062ecb3affee0d7e2ecfa4f3b230f692d3f3aceb78994588ae4cb3ebb6a3176acd4cc10f7df4682b6618e290d132b521cda6f9c64d1c494c53af48ab1a98
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
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!(start_time: start_time) unless start_time.nil?
135
- params.merge!(end_time: end_time) unless end_time.nil?
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.1
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-10-06 00:00:00.000000000 Z
13
+ date: 2016-11-08 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client