allq_rest 1.2.7 → 1.2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c894f6fe084a132d3a7c91b3950eb33720577989fe902f5b2e932fdd9906f5b1
4
- data.tar.gz: c223af34965d58659dd116568268ef12dad30c473dba5db0d894a8fbd01958e5
3
+ metadata.gz: fc1862b16571cc7c644e421f7f313837aca58f097813bd1e385c7500765baacd
4
+ data.tar.gz: 5c80c7c1db250506edd77a4dae0d4344d5639e58809a6cb78b49ad5e19028405
5
5
  SHA512:
6
- metadata.gz: da34829fbc9288c6161c74b8f4595608c3e16568e34ae977e41960b2e9b36225af3acbece2b96f49df6245bbcc4c93e3f8aea608e0836a25402b7f73a5466e2d
7
- data.tar.gz: c69151989a83c5d1bf2344876430254dd88e32fdc9eeeba7e99cb562cde2ff4cc96dca19972231de53e0372d3f4c82db3901a3af82656bf02bc1676dc57a60ff
6
+ metadata.gz: ef5285bf2a754fca8610c4a413cbfb942178b05ba9d9f5fd5426431246f39f57bcf149649d64deb7afddf1f517eb31de53b5d6c9b6195eaa0561d30c60dfd1d8
7
+ data.tar.gz: 4fdc06551ba5d88609ffa54f01534c811a764beb418ee472c22f22f50e8d75acc45177d1ce8c7af212cce780de6609696266801d53153017986fd36dfaaec802
data/deploy.sh CHANGED
@@ -1,3 +1,3 @@
1
1
  echo "Did you update the version?"
2
2
  gem build allq_rest.gemspec
3
- gem push allq_rest-1.2.7.gem
3
+ gem push allq_rest-1.2.8.gem
@@ -55,6 +55,7 @@ module Allq
55
55
  # Initializes the object
56
56
  # @param [Hash] attributes Model attributes in the form of hash
57
57
  def initialize(attributes = {})
58
+
58
59
  return unless attributes.is_a?(Hash)
59
60
 
60
61
  # convert string to symbol for hash key
@@ -67,7 +67,7 @@ module Allq
67
67
  :'parents' => :'Integer',
68
68
  :'throttle_size' => :'Integer',
69
69
  :'avg' => :'Integer',
70
- :'tps' => :'tps',
70
+ :'tps' => :'Integer',
71
71
  :'tube' => :'String'
72
72
  }
73
73
  end
@@ -155,6 +155,13 @@ module Allq
155
155
  invalid_properties.push('invalid value for "tube", tube cannot be nil.')
156
156
  end
157
157
 
158
+ if @avg.nil?
159
+ invalid_properties.push('invalid value for "avg", avg cannot be nil.')
160
+ end
161
+
162
+ if @tps.nil?
163
+ invalid_properties.push('invalid value for "tps", tps cannot be nil.')
164
+ end
158
165
  invalid_properties
159
166
  end
160
167
 
@@ -166,6 +173,8 @@ module Allq
166
173
  return false if @reserved.nil?
167
174
  return false if @buried.nil?
168
175
  return false if @parents.nil?
176
+ return false if @avg.nil?
177
+ return false if @tps.nil?
169
178
  return false if @tube.nil?
170
179
  true
171
180
  end
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.2
11
11
  =end
12
12
 
13
13
  module Allq
14
- VERSION = '1.2.7'
14
+ VERSION = '1.2.8'
15
15
  end
@@ -46,6 +46,22 @@ describe 'ActionsApi' do
46
46
  end
47
47
  end
48
48
 
49
+ # unit tests for get_stats
50
+ # Bury
51
+ # Bury Job
52
+ # @param job_id Job ID
53
+ # @param [Hash] opts the optional parameters
54
+ # @return [BasicResponse]
55
+ describe 'get_stats test' do
56
+ it "should work" do
57
+ @allq_tool.add_job
58
+ puts @admin_tools.stats_get[0].inspect
59
+ output = @admin_tools.stats_get[0].stats[0]
60
+ data = output.tps
61
+ expect(data).not_to be_nil
62
+ end
63
+ end
64
+
49
65
  # unit tests for bury_put
50
66
  # Bury
51
67
  # Bury Job
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: allq_rest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.7
4
+ version: 1.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - support@blitline.com
@@ -81,8 +81,6 @@ files:
81
81
  - Gemfile.lock
82
82
  - README.md
83
83
  - Rakefile
84
- - allq_rest-1.2.5.gem
85
- - allq_rest-1.2.6.gem
86
84
  - allq_rest.gemspec
87
85
  - deploy.sh
88
86
  - docs/ActionsApi.md
data/allq_rest-1.2.5.gem DELETED
Binary file
data/allq_rest-1.2.6.gem DELETED
Binary file