qa_server 5.2.0 → 5.2.1

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: 26e45e1d4aa00f3f8fd82cdd24e412477ea2b448
4
- data.tar.gz: c42568892610df1b1be0fae23b5bf5ae9dae2e3a
3
+ metadata.gz: 2981264303c79aed94820ba9955f0e61b005afbc
4
+ data.tar.gz: 1e506e5f45848be21886d73116fdd4bb48e90d69
5
5
  SHA512:
6
- metadata.gz: 4e80f46f48200d0788b687ac06ae49d93ee2530bd511465fa4e0f2203cd468c81765b13098aff93116168b85491e292353d7f0dc0fdb80d2b68bb0ee6c054233
7
- data.tar.gz: 94d8b59f177c37c7458495586b4c4334afb38d6e40cf8d1324ca3f5b823d3c3d73d87d636a724356d362556649e716cf51f411f4876e447a71e3fdf1358cbb0c
6
+ metadata.gz: 49baea993d35cfdc84ca8af81c2e577a0d908ff13b77c53ad1e6cbc28b9c291ee9603339c97d64efa7fbfef27ab693b2442237c44baad24c2cc9c55b09db043d
7
+ data.tar.gz: 85d53d7ccae9be71244f42b0d24f9f1e454d1b8f462c9329e5e3519d85be7034cc8ac59e2965f628773b35a17656ccb5da4c6f7d46d88344678d7127cb299e37
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 5.2.1 (2019-12-13)
2
+
3
+ * fix - add defaults to the initializer generator template for new configs
4
+
1
5
  ### 5.2.0 (2019-12-10)
2
6
 
3
7
  * cache performance data saving once a day when monitoring runs
@@ -1,5 +1,17 @@
1
1
  # frozen_string_literal: true
2
2
  QaServer.config do |config|
3
+ # Preferred time zone for reporting historical data and performance data
4
+ # @param [String] time zone name
5
+ # @see https://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html for possible values of TimeZone names
6
+ # config.preferred_time_zone_name = 'Eastern Time (US & Canada)'
7
+
8
+ # Preferred hour to run monitoring tests
9
+ # @param [Integer] count of hours from midnight (0-23 with 0=midnight)
10
+ # @example
11
+ # For preferred_time_zone_name of 'Eastern Time (US & Canada)', use 3 for slow down at midnight PT/3am ET
12
+ # For preferred_time_zone_name of 'Pacific Time (US & Canada)', use 0 for slow down at midnight PT/3am ET
13
+ # config.hour_offset_to_run_monitoring_tests = 3
14
+
3
15
  # Displays a graph of historical test data when true
4
16
  # @param [Boolean] display history graph when true
5
17
  # config.display_historical_graph = false
@@ -12,8 +12,8 @@ module QaServer
12
12
  # Preferred hour to run monitoring tests
13
13
  # @param [Integer] count of hours from midnight (0-23 with 0=midnight)
14
14
  # @example
15
- # For preferred_time_zone_name of ET, use 3 for slow down at midnight PT/3am ET
16
- # For preferred_time_zone_name of PT, use 0 for slow down at midnight PT/3am ET
15
+ # For preferred_time_zone_name of 'Eastern Time (US & Canada)', use 3 for slow down at midnight PT/3am ET
16
+ # For preferred_time_zone_name of 'Pacific Time (US & Canada)', use 0 for slow down at midnight PT/3am ET
17
17
  attr_writer :hour_offset_to_run_monitoring_tests
18
18
  def hour_offset_to_run_monitoring_tests
19
19
  @hour_offset_to_run_monitoring_tests ||= 3
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module QaServer
3
- VERSION = '5.2.0'
3
+ VERSION = '5.2.1'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qa_server
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.0
4
+ version: 5.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - E. Lynette Rayle
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-12 00:00:00.000000000 Z
11
+ date: 2019-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails