qa_server 3.0.1 → 3.0.2

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
  SHA1:
3
- metadata.gz: 07b0fa2f20f5bb153db7ad23e9b220acac6c6207
4
- data.tar.gz: 26780210f6c2e80b2be8964ec0bfa31fd24f962b
3
+ metadata.gz: 588fc21acaf86a8aafc9cc5900db53a554091fd9
4
+ data.tar.gz: 91dd513fbb6a6407be2d6075d8748bebeddacb2a
5
5
  SHA512:
6
- metadata.gz: a32e34c94603bc1fa5cda525882ba8a60a1d7feb1afa190f081bfad7fc919895931f530c7847db6dace78d8639f4aa307d84fab1ff9d93ae525055a4cda1f4fb
7
- data.tar.gz: 7eb0925bf1f3fc0cc4ee5a8afec876fa6a8fa8cbbd27417c3e844f3e9ab82f2516d95caf88fe93c9fc41188a78019e1e6c0a98d504237119f6fb4e47265275b6
6
+ metadata.gz: b0882de932666dd854da5133e6f63f8b192fe94df638e3d387938fff123412e1ce15a84df0ffaa093ce35b485daeafd6fa78da1958471e01f511861b7f4d408b
7
+ data.tar.gz: 6467274365bc70d7865aa1750de61b785d5758512eb3c12d88f97e6686b0af6293bcfc3b105d56f6da7ec08b1f14a522359b87c5c2200755692cd775109dbffb
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 3.0.2 (2019-10-09)
2
+
3
+ * bug fix - make sure count is counting based on the current set of times
4
+
1
5
  ### 3.0.1 (2019-10-09)
2
6
 
3
7
  * use old :load data when split :retrieve and :graph_load are not available
@@ -63,7 +63,7 @@ module QaServer
63
63
 
64
64
  def tenth_percentile_count(times)
65
65
  percentile_count = (times.count * 0.1).round
66
- percentile_count = 1 if percentile_count.zero? && count > 1
66
+ percentile_count = 1 if percentile_count.zero? && times.count > 1
67
67
  percentile_count
68
68
  end
69
69
 
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module QaServer
3
- VERSION = '3.0.1'
3
+ VERSION = '3.0.2'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qa_server
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - E. Lynette Rayle