allq 0.1.5 → 0.1.6

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: 6b8559866f94f306c73d4c86db9df0cbed2f9d62
4
- data.tar.gz: 83172c958ee6ebc754c633e70dab3cf38541b028
3
+ metadata.gz: 4993c88fc7c0eb7699551bcc9717a47a5bcea63a
4
+ data.tar.gz: 6e21ccfe2522d9e98f51bc55dab97f631a9fa483
5
5
  SHA512:
6
- metadata.gz: 301c75daf192b1ea190f3ef063a33b1fb8968c8172166f729b2032c17cafd70b00aa41459696ecaea968c1a74ff2e667fcd353a680b43dfb884b2720c94e8322
7
- data.tar.gz: 8f05b5205316930d0e89b01c6336039e530bdb20d54eb33894e0a239ed79910add9473872fb71303692321ceb87e72c020fa40f01020a91afa070610292c0cf9
6
+ metadata.gz: 5663c6e09eab6d5c01b0f9c5f1fd577b21846efb807b7bb7887ddda690644f70613471b7dc9de6ef5c85b17a550d8d58a90afe2d95151b417b24009c0e28ba24
7
+ data.tar.gz: 1821e5bc8745d28eea05e969b2d3b92021eb99a625f9fcb158fa26395f7f851535437540aa0f2ddad46b6349a370df14e554cd1a61cadfd5ce85df2780a77cd4
@@ -5,7 +5,6 @@ class AllQ
5
5
  return nil if data.to_s == '' || data.to_s.strip == '{}'
6
6
 
7
7
  result = JSON.parse(data)
8
- puts "GET result #{result}"
9
8
  if result['job']
10
9
  return nil if result['job'].empty?
11
10
  job = Job.new_from_hash(result['job'])
@@ -15,7 +15,6 @@ class AllQ
15
15
  return nil if data.to_s == '' || data.to_s.strip == '{}'
16
16
 
17
17
  result = JSON.parse(data)
18
- puts "PEEK result #{result}"
19
18
  if result['job']
20
19
  return nil if result['job'].empty?
21
20
  job = Job.new_from_hash(result['job'])
data/lib/allq/job.rb CHANGED
@@ -51,7 +51,6 @@ class AllQ
51
51
  end
52
52
 
53
53
  def self.new_from_hash(hash)
54
- puts hash.inspect
55
54
  begin
56
55
  id = hash.fetch('job_id')
57
56
  body = hash.fetch('body')
data/lib/allq/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Allq
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: allq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason