neetob 0.5.58 → 0.5.59

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
  SHA256:
3
- metadata.gz: b490069c719d8cd5aed0b087d3d86a2c90bb7bc3bc12a2e85b81fe24af6f72c5
4
- data.tar.gz: ebe6483ae2bda1a8d0fafaeea4f42e377b8fc59fbcdbd9e4dca649d1491263ed
3
+ metadata.gz: f1e5c88e37056dc8f8e0c06286b82f6e24187dcc40deca062b81d3dd4d7ff4b5
4
+ data.tar.gz: '01778584c7dee0fc8acb96d54438259f3408ea52dc34c12bbdcbaf0de53becf8'
5
5
  SHA512:
6
- metadata.gz: 5a2d78732430c0fed4b5f63b3660c63ebb0e9bf4f7958f20a273e7bf7d47250bb7136d4ee200cf41ee4af94267c7ee55607dfd4e0476205a9a10168b8f8c5816
7
- data.tar.gz: 96f969f01a90b0c54a09ca3e1371ef61e3c1fa0f169e4451f4a8288bc82d89a8d1b9494aa81f60b62e020bce4fbbdeceedb63a0ed554ac03faf3366fc6c2fe5b
6
+ metadata.gz: fc91a29ca99035b6ae00a0e2a2fa0e1eabfeba58107790c9c672c048341c85cd08becb6d872f2e22fbf0c82f038373adb5190b94099a878329029ec54b1daa19
7
+ data.tar.gz: 86bfa714a68b70f8df5ce5ddd068d63d844d77a0e3acf7d7dbf805f51c57cf6418e509b1f717bac150e6a72816e76830ccabb4f4523be8907fbd26a5b04b68ba
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- neetob (0.5.58)
4
+ neetob (0.5.59)
5
5
  actionview
6
6
  activesupport
7
7
  brakeman (~> 5.0)
@@ -28,11 +28,10 @@ module Neetob
28
28
  else
29
29
  autoscaling_config = JSON.parse(autoscaling_config_result.gsub("=>", ":"))
30
30
  autoscaling_turned_on_for_web = autoscaling_config["web"]
31
- autoscaling_turned_on_for_worker = autoscaling_config["worker"]
32
31
 
33
- audit_passed = autoscaling_turned_on_for_web && autoscaling_turned_on_for_worker ? "Yes" : "No"
32
+ audit_passed = autoscaling_turned_on_for_web ? "Yes" : "No"
34
33
  if audit_passed == "No"
35
- comments = "Auto-scaling is not enabled for web and/or worker dynos."
34
+ comments = "Auto-scaling is not enabled for web dynos."
36
35
  same_as_last_comment = comments == last_comment
37
36
  last_comment = comments
38
37
  comments = "''" if same_as_last_comment
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Neetob
4
- VERSION = "0.5.58"
4
+ VERSION = "0.5.59"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neetob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.58
4
+ version: 0.5.59
5
5
  platform: ruby
6
6
  authors:
7
7
  - Udai Gupta