hey_doctor 1.2.1 → 1.3.1

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: 46261fddaead676b10046df7df18cf3c938cae24f67411209fb1debbed8e8611
4
- data.tar.gz: 216362f7032c66486f18efa4f2350266dc1be76a08fef0b261a314865cc86d29
3
+ metadata.gz: d854aed46a009b3d8fab4116a9ce9277fb76c7d3d1a9117dc28fa6c82a54e1f6
4
+ data.tar.gz: 0dd3285bbaaf52996df32277f7261aa35fceced3ffe749b4091de0b7db4d932f
5
5
  SHA512:
6
- metadata.gz: c35f243450764f91e090c4f64cbb3b7dff1da470dfe91be910da7b1d15726ef562779583f3a6e4180774d3b589cfe75411f2f9f14c6d9229f099311212a41b7b
7
- data.tar.gz: 6fde171c56494f5aebd86c864ae690beba04e6d740a881d468db061aab5ee406890aa9e234c18b6c07583ce6f81334a230b8ba7d269048bd9c519ccfcf6f6c0c
6
+ metadata.gz: 288322908e582f60fbce12bcd4cac0f277b4ca23c8b549316538bc6abc16d7af33a6e2b6a7f48f43284a89066d776b82d5bd2622a36d304cdf2efe920d504a1b
7
+ data.tar.gz: 2c1b20cf9f589c57c494229ebab8e012e11de2e05f0d19a2d4710c2179adc46641c55227f7b56ee58a49e8d4ae7b6af4fa63240d52b995e3c4d029ee5088f9d3
data/README.md CHANGED
@@ -81,6 +81,8 @@ end
81
81
  ## Developing
82
82
 
83
83
  ```bash
84
+ docker network create dev-net # only the fist time you run this project
85
+
84
86
  docker-compose build && docker-compose up
85
87
 
86
88
  docker-compose exec web bash
@@ -12,6 +12,9 @@ class HeyDoctor::CheckApplicationHealthService
12
12
  message: 'Application down, call the firefighters'
13
13
  }.freeze
14
14
 
15
+ START_COUNTER = 1
16
+ DEFAULT_PORT = ENV['RAILS_PORT'] || ENV['PORT']
17
+
15
18
  def call
16
19
  return SUCCESS if responding?
17
20
 
@@ -21,17 +24,31 @@ class HeyDoctor::CheckApplicationHealthService
21
24
  private
22
25
 
23
26
  def responding?
24
- app_http_code == '200'
27
+ app_http_code('localhost', DEFAULT_PORT, START_COUNTER) == 200
25
28
  rescue StandardError
26
29
  false
27
30
  end
28
31
 
29
- def app_http_code
30
- port = ENV['RAILS_PORT'] || ENV['PORT']
32
+ def app_http_code(location, port, retry_counter)
33
+ ssl = port.to_i == 443
31
34
 
32
- Net::HTTP.start('localhost', port) do |http|
35
+ response = Net::HTTP.start(location, port, use_ssl: ssl) do |http|
33
36
  http.head('/_ah/app_health')
34
- end.code
37
+ end
38
+
39
+ return response.code.to_i if retry_counter > 3
40
+
41
+ if response.is_a?(Net::HTTPRedirection)
42
+ location = response['location']&.match(/https:\/\/(\w+.\.\w+)\//)
43
+
44
+ unless location.nil?
45
+ retry_counter += 1
46
+
47
+ return app_http_code(location[1], 443, retry_counter)
48
+ end
49
+ end
50
+
51
+ response.code.to_i
35
52
  end
36
53
  end
37
54
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HeyDoctor
4
- VERSION = '1.2.1'
4
+ VERSION = '1.3.1'
5
5
  end
@@ -2726,3 +2726,136 @@ rack (2.2.3) lib/rack/handler/webrick.rb:95:in `service'
2726
2726
  ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-04-09 12:53:01.651137"], ["updated_at", "2021-04-09 12:53:01.651137"]]
2727
2727
  TRANSACTION (0.6ms) COMMIT
2728
2728
   (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2729
+  (82.2ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2730
+  (119.2ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2731
+  (97.5ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2732
+  (0.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2733
+ SQL (2.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2734
+  (9.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2735
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2736
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2737
+  (5.8ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2738
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2739
+ TRANSACTION (0.3ms) BEGIN
2740
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-05-06 18:57:35.292680"], ["updated_at", "2021-05-06 18:57:35.292680"]]
2741
+ TRANSACTION (0.7ms) COMMIT
2742
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2743
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2744
+ TRANSACTION (0.3ms) BEGIN
2745
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-05-06 18:57:35.307718"], ["updated_at", "2021-05-06 18:57:35.307718"]]
2746
+ TRANSACTION (0.9ms) COMMIT
2747
+  (1.7ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2748
+  (116.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2749
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2750
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2751
+ SQL (2.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2752
+  (9.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2753
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2754
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2755
+  (6.2ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2756
+ ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2757
+ TRANSACTION (0.3ms) BEGIN
2758
+ ActiveRecord::InternalMetadata Create (1.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-05-06 18:59:43.679600"], ["updated_at", "2021-05-06 18:59:43.679600"]]
2759
+ TRANSACTION (0.8ms) COMMIT
2760
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2761
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2762
+ TRANSACTION (0.3ms) BEGIN
2763
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-05-06 18:59:43.695446"], ["updated_at", "2021-05-06 18:59:43.695446"]]
2764
+ TRANSACTION (0.7ms) COMMIT
2765
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2766
+  (8.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2767
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2768
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2769
+  (5.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2770
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2771
+ TRANSACTION (0.3ms) BEGIN
2772
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-05-06 18:59:43.767355"], ["updated_at", "2021-05-06 18:59:43.767355"]]
2773
+ TRANSACTION (0.7ms) COMMIT
2774
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2775
+ TRANSACTION (0.3ms) BEGIN
2776
+ ActiveRecord::InternalMetadata Update (0.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-05-06 18:59:43.783711"], ["key", "environment"]]
2777
+ TRANSACTION (0.8ms) COMMIT
2778
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2779
+ TRANSACTION (0.4ms) BEGIN
2780
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-05-06 18:59:43.797546"], ["updated_at", "2021-05-06 18:59:43.797546"]]
2781
+ TRANSACTION (0.7ms) COMMIT
2782
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2783
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-05-06 19:04:56 +0000
2784
+  (4.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2785
+  (0.4ms) select 1
2786
+  (0.5ms) select 1
2787
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2788
+ Started GET "/favicon.ico" for 172.18.0.1 at 2021-05-06 19:04:56 +0000
2789
+
2790
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
2791
+
2792
+ Started HEAD "/_ah/app_health" for 127.0.0.1 at 2021-05-06 19:05:46 +0000
2793
+  (0.3ms) select 1
2794
+  (0.5ms) select 1
2795
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2796
+  (130.1ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2797
+  (1.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2798
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2799
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2800
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2801
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2802
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2803
+  (0.9ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2804
+  (185.6ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2805
+ SQL (1.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2806
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2807
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2808
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2809
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2810
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2811
+  (9.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2812
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2813
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2814
+  (6.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2815
+ ActiveRecord::InternalMetadata Load (1.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2816
+ TRANSACTION (0.3ms) BEGIN
2817
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-05-06 19:41:04.946168"], ["updated_at", "2021-05-06 19:41:04.946168"]]
2818
+ TRANSACTION (0.8ms) COMMIT
2819
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2820
+ TRANSACTION (0.3ms) BEGIN
2821
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-05-06 19:41:04.956110"], ["key", "environment"]]
2822
+ TRANSACTION (0.7ms) COMMIT
2823
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2824
+ TRANSACTION (0.3ms) BEGIN
2825
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-05-06 19:41:04.965656"], ["updated_at", "2021-05-06 19:41:04.965656"]]
2826
+ TRANSACTION (0.8ms) COMMIT
2827
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2828
+  (56.4ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'
2829
+  (58.5ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2830
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2831
+  (7.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2832
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2833
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2834
+  (7.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2835
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2836
+ TRANSACTION (0.2ms) BEGIN
2837
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-09-24 14:44:00.812536"], ["updated_at", "2021-09-24 14:44:00.812536"]]
2838
+ TRANSACTION (0.8ms) COMMIT
2839
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2840
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2841
+ TRANSACTION (0.2ms) BEGIN
2842
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-09-24 14:44:00.819120"], ["updated_at", "2021-09-24 14:44:00.819120"]]
2843
+ TRANSACTION (0.9ms) COMMIT
2844
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2845
+  (7.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
2846
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2847
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES (0)
2848
+  (6.0ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
2849
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2850
+ TRANSACTION (0.2ms) BEGIN
2851
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-09-24 14:44:00.860767"], ["updated_at", "2021-09-24 14:44:00.860767"]]
2852
+ TRANSACTION (1.0ms) COMMIT
2853
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2854
+ TRANSACTION (0.2ms) BEGIN
2855
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-09-24 14:44:00.866072"], ["key", "environment"]]
2856
+ TRANSACTION (0.9ms) COMMIT
2857
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2858
+ TRANSACTION (0.2ms) BEGIN
2859
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "c9ad1dbaa05acea2eb44861d1fdc691e622f5dd5"], ["created_at", "2021-09-24 14:44:00.870545"], ["updated_at", "2021-09-24 14:44:00.870545"]]
2860
+ TRANSACTION (0.9ms) COMMIT
2861
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
@@ -2408,3 +2408,261 @@ Started GET "/_ah/app_health" for 127.0.0.1 at 2021-04-09 12:50:32 +0000
2408
2408
  TRANSACTION (0.7ms) ROLLBACK
2409
2409
  TRANSACTION (0.4ms) BEGIN
2410
2410
  TRANSACTION (0.3ms) ROLLBACK
2411
+  (48.7ms) DROP DATABASE IF EXISTS "dummy_test"
2412
+  (178.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
2413
+ SQL (1.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2414
+  (3.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2415
+ ActiveRecord::InternalMetadata Load (1.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2416
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
2417
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
2418
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2419
+ TRANSACTION (0.3ms) BEGIN
2420
+ TRANSACTION (0.4ms) ROLLBACK
2421
+ TRANSACTION (0.3ms) BEGIN
2422
+ Started GET "/_ah/app_health" for 127.0.0.1 at 2021-05-06 19:04:56 +0000
2423
+ TRANSACTION (0.7ms) ROLLBACK
2424
+ TRANSACTION (0.5ms) BEGIN
2425
+ TRANSACTION (0.6ms) ROLLBACK
2426
+ TRANSACTION (0.5ms) BEGIN
2427
+ TRANSACTION (1.2ms) ROLLBACK
2428
+ TRANSACTION (0.7ms) BEGIN
2429
+  (0.6ms) select 1
2430
+  (0.5ms) select 1
2431
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2432
+ TRANSACTION (0.5ms) ROLLBACK
2433
+ TRANSACTION (0.4ms) BEGIN
2434
+ TRANSACTION (1.0ms) ROLLBACK
2435
+ TRANSACTION (0.6ms) BEGIN
2436
+ TRANSACTION (1.2ms) ROLLBACK
2437
+ TRANSACTION (0.4ms) BEGIN
2438
+  (0.9ms) select 1
2439
+ TRANSACTION (0.7ms) ROLLBACK
2440
+ TRANSACTION (0.6ms) BEGIN
2441
+ TRANSACTION (0.6ms) ROLLBACK
2442
+ TRANSACTION (1.0ms) BEGIN
2443
+ TRANSACTION (0.8ms) ROLLBACK
2444
+ TRANSACTION (0.3ms) BEGIN
2445
+ TRANSACTION (0.5ms) ROLLBACK
2446
+ TRANSACTION (0.3ms) BEGIN
2447
+ TRANSACTION (0.5ms) ROLLBACK
2448
+ TRANSACTION (0.6ms) BEGIN
2449
+ TRANSACTION (0.4ms) ROLLBACK
2450
+ TRANSACTION (0.4ms) BEGIN
2451
+ TRANSACTION (0.5ms) ROLLBACK
2452
+ TRANSACTION (0.4ms) BEGIN
2453
+ TRANSACTION (0.8ms) ROLLBACK
2454
+ TRANSACTION (0.6ms) BEGIN
2455
+ TRANSACTION (0.4ms) ROLLBACK
2456
+ TRANSACTION (0.2ms) BEGIN
2457
+ TRANSACTION (0.2ms) ROLLBACK
2458
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
2459
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2460
+ TRANSACTION (0.2ms) BEGIN
2461
+ TRANSACTION (0.3ms) ROLLBACK
2462
+ TRANSACTION (0.2ms) BEGIN
2463
+ Started GET "/_ah/app_health" for 127.0.0.1 at 2021-09-24 14:46:45 +0000
2464
+ TRANSACTION (0.3ms) ROLLBACK
2465
+ TRANSACTION (0.1ms) BEGIN
2466
+ TRANSACTION (0.2ms) ROLLBACK
2467
+ TRANSACTION (0.1ms) BEGIN
2468
+ TRANSACTION (0.1ms) ROLLBACK
2469
+ TRANSACTION (0.1ms) BEGIN
2470
+  (0.1ms) select 1
2471
+  (0.1ms) select 1
2472
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2473
+ TRANSACTION (0.1ms) ROLLBACK
2474
+ TRANSACTION (0.1ms) BEGIN
2475
+ TRANSACTION (0.8ms) ROLLBACK
2476
+ TRANSACTION (0.1ms) BEGIN
2477
+ TRANSACTION (0.2ms) ROLLBACK
2478
+ TRANSACTION (0.1ms) BEGIN
2479
+  (0.2ms) select 1
2480
+ TRANSACTION (0.3ms) ROLLBACK
2481
+ TRANSACTION (0.1ms) BEGIN
2482
+ TRANSACTION (0.2ms) ROLLBACK
2483
+ TRANSACTION (0.2ms) BEGIN
2484
+ TRANSACTION (0.3ms) ROLLBACK
2485
+ TRANSACTION (0.2ms) BEGIN
2486
+ TRANSACTION (0.2ms) ROLLBACK
2487
+ TRANSACTION (0.1ms) BEGIN
2488
+ TRANSACTION (0.2ms) ROLLBACK
2489
+ TRANSACTION (0.1ms) BEGIN
2490
+ TRANSACTION (0.2ms) ROLLBACK
2491
+ TRANSACTION (0.1ms) BEGIN
2492
+ TRANSACTION (4.5ms) ROLLBACK
2493
+ TRANSACTION (0.1ms) BEGIN
2494
+ TRANSACTION (0.8ms) ROLLBACK
2495
+ TRANSACTION (0.1ms) BEGIN
2496
+ TRANSACTION (0.2ms) ROLLBACK
2497
+ TRANSACTION (0.2ms) BEGIN
2498
+ TRANSACTION (0.1ms) ROLLBACK
2499
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
2500
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2501
+ TRANSACTION (0.3ms) BEGIN
2502
+ TRANSACTION (0.2ms) ROLLBACK
2503
+ TRANSACTION (0.1ms) BEGIN
2504
+ Started GET "/_ah/app_health" for 127.0.0.1 at 2021-09-24 14:46:53 +0000
2505
+ TRANSACTION (0.2ms) ROLLBACK
2506
+ TRANSACTION (0.1ms) BEGIN
2507
+ TRANSACTION (0.1ms) ROLLBACK
2508
+ TRANSACTION (0.1ms) BEGIN
2509
+ TRANSACTION (0.1ms) ROLLBACK
2510
+ TRANSACTION (0.1ms) BEGIN
2511
+  (0.1ms) select 1
2512
+  (0.1ms) select 1
2513
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2514
+ TRANSACTION (1.2ms) ROLLBACK
2515
+ TRANSACTION (0.1ms) BEGIN
2516
+ TRANSACTION (0.1ms) ROLLBACK
2517
+ TRANSACTION (0.1ms) BEGIN
2518
+ TRANSACTION (0.1ms) ROLLBACK
2519
+ TRANSACTION (0.1ms) BEGIN
2520
+  (0.1ms) select 1
2521
+ TRANSACTION (0.1ms) ROLLBACK
2522
+ TRANSACTION (0.1ms) BEGIN
2523
+ TRANSACTION (0.1ms) ROLLBACK
2524
+ TRANSACTION (0.1ms) BEGIN
2525
+ TRANSACTION (0.2ms) ROLLBACK
2526
+ TRANSACTION (0.1ms) BEGIN
2527
+ TRANSACTION (0.1ms) ROLLBACK
2528
+ TRANSACTION (0.1ms) BEGIN
2529
+ TRANSACTION (0.1ms) ROLLBACK
2530
+ TRANSACTION (0.1ms) BEGIN
2531
+ TRANSACTION (0.1ms) ROLLBACK
2532
+ TRANSACTION (0.1ms) BEGIN
2533
+ TRANSACTION (0.1ms) ROLLBACK
2534
+ TRANSACTION (0.1ms) BEGIN
2535
+ TRANSACTION (0.1ms) ROLLBACK
2536
+ TRANSACTION (0.1ms) BEGIN
2537
+ TRANSACTION (0.5ms) ROLLBACK
2538
+ TRANSACTION (0.3ms) BEGIN
2539
+ TRANSACTION (0.3ms) ROLLBACK
2540
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
2541
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2542
+ TRANSACTION (0.3ms) BEGIN
2543
+ TRANSACTION (0.2ms) ROLLBACK
2544
+ TRANSACTION (0.2ms) BEGIN
2545
+ Started GET "/_ah/app_health" for 127.0.0.1 at 2021-09-24 14:48:57 +0000
2546
+ TRANSACTION (0.3ms) ROLLBACK
2547
+ TRANSACTION (0.1ms) BEGIN
2548
+ TRANSACTION (0.1ms) ROLLBACK
2549
+ TRANSACTION (0.1ms) BEGIN
2550
+ TRANSACTION (0.1ms) ROLLBACK
2551
+ TRANSACTION (0.1ms) BEGIN
2552
+  (0.1ms) select 1
2553
+  (0.1ms) select 1
2554
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2555
+ TRANSACTION (0.1ms) ROLLBACK
2556
+ TRANSACTION (0.1ms) BEGIN
2557
+ TRANSACTION (0.1ms) ROLLBACK
2558
+ TRANSACTION (0.1ms) BEGIN
2559
+ TRANSACTION (0.1ms) ROLLBACK
2560
+ TRANSACTION (0.1ms) BEGIN
2561
+  (0.1ms) select 1
2562
+ TRANSACTION (0.1ms) ROLLBACK
2563
+ TRANSACTION (0.1ms) BEGIN
2564
+ TRANSACTION (0.1ms) ROLLBACK
2565
+ TRANSACTION (0.1ms) BEGIN
2566
+ TRANSACTION (0.2ms) ROLLBACK
2567
+ TRANSACTION (0.1ms) BEGIN
2568
+ TRANSACTION (0.1ms) ROLLBACK
2569
+ TRANSACTION (0.1ms) BEGIN
2570
+ TRANSACTION (0.1ms) ROLLBACK
2571
+ TRANSACTION (0.1ms) BEGIN
2572
+ TRANSACTION (0.1ms) ROLLBACK
2573
+ TRANSACTION (0.1ms) BEGIN
2574
+ TRANSACTION (0.1ms) ROLLBACK
2575
+ TRANSACTION (0.1ms) BEGIN
2576
+ TRANSACTION (0.1ms) ROLLBACK
2577
+ TRANSACTION (0.1ms) BEGIN
2578
+ TRANSACTION (0.5ms) ROLLBACK
2579
+ TRANSACTION (0.3ms) BEGIN
2580
+ TRANSACTION (0.4ms) ROLLBACK
2581
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
2582
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2583
+ TRANSACTION (0.3ms) BEGIN
2584
+ TRANSACTION (0.2ms) ROLLBACK
2585
+ TRANSACTION (0.2ms) BEGIN
2586
+ Started GET "/_ah/app_health" for 127.0.0.1 at 2021-09-24 15:19:58 +0000
2587
+ TRANSACTION (0.2ms) ROLLBACK
2588
+ TRANSACTION (0.1ms) BEGIN
2589
+ TRANSACTION (0.5ms) ROLLBACK
2590
+ TRANSACTION (0.1ms) BEGIN
2591
+ TRANSACTION (0.1ms) ROLLBACK
2592
+ TRANSACTION (0.1ms) BEGIN
2593
+  (0.1ms) select 1
2594
+  (0.1ms) select 1
2595
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2596
+ TRANSACTION (0.2ms) ROLLBACK
2597
+ TRANSACTION (0.1ms) BEGIN
2598
+ TRANSACTION (0.1ms) ROLLBACK
2599
+ TRANSACTION (0.1ms) BEGIN
2600
+ TRANSACTION (0.1ms) ROLLBACK
2601
+ TRANSACTION (0.1ms) BEGIN
2602
+  (0.1ms) select 1
2603
+ TRANSACTION (0.1ms) ROLLBACK
2604
+ TRANSACTION (0.1ms) BEGIN
2605
+ TRANSACTION (0.1ms) ROLLBACK
2606
+ TRANSACTION (0.1ms) BEGIN
2607
+ TRANSACTION (0.2ms) ROLLBACK
2608
+ TRANSACTION (0.1ms) BEGIN
2609
+ TRANSACTION (0.1ms) ROLLBACK
2610
+ TRANSACTION (0.1ms) BEGIN
2611
+ TRANSACTION (0.1ms) ROLLBACK
2612
+ TRANSACTION (0.1ms) BEGIN
2613
+ TRANSACTION (0.1ms) ROLLBACK
2614
+ TRANSACTION (0.1ms) BEGIN
2615
+ TRANSACTION (0.1ms) ROLLBACK
2616
+ TRANSACTION (0.1ms) BEGIN
2617
+ TRANSACTION (0.1ms) ROLLBACK
2618
+ TRANSACTION (0.1ms) BEGIN
2619
+ TRANSACTION (0.7ms) ROLLBACK
2620
+ TRANSACTION (0.5ms) BEGIN
2621
+ TRANSACTION (0.5ms) ROLLBACK
2622
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
2623
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2624
+ TRANSACTION (0.3ms) BEGIN
2625
+ TRANSACTION (0.2ms) ROLLBACK
2626
+ TRANSACTION (0.1ms) BEGIN
2627
+ Started GET "/_ah/app_health" for 127.0.0.1 at 2021-09-24 15:24:06 +0000
2628
+ TRANSACTION (0.3ms) ROLLBACK
2629
+ TRANSACTION (0.1ms) BEGIN
2630
+ TRANSACTION (0.1ms) ROLLBACK
2631
+ TRANSACTION (0.1ms) BEGIN
2632
+ TRANSACTION (0.1ms) ROLLBACK
2633
+ TRANSACTION (0.1ms) BEGIN
2634
+ TRANSACTION (0.2ms) ROLLBACK
2635
+ TRANSACTION (0.1ms) BEGIN
2636
+  (0.1ms) select 1
2637
+  (0.2ms) select 1
2638
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2639
+ TRANSACTION (0.1ms) ROLLBACK
2640
+ TRANSACTION (0.2ms) BEGIN
2641
+ TRANSACTION (0.2ms) ROLLBACK
2642
+ TRANSACTION (0.1ms) BEGIN
2643
+ TRANSACTION (0.1ms) ROLLBACK
2644
+ TRANSACTION (0.2ms) BEGIN
2645
+  (0.2ms) select 1
2646
+ TRANSACTION (0.2ms) ROLLBACK
2647
+ TRANSACTION (0.2ms) BEGIN
2648
+ TRANSACTION (0.1ms) ROLLBACK
2649
+ TRANSACTION (0.1ms) BEGIN
2650
+ TRANSACTION (0.1ms) ROLLBACK
2651
+ TRANSACTION (0.1ms) BEGIN
2652
+ TRANSACTION (0.1ms) ROLLBACK
2653
+ TRANSACTION (0.1ms) BEGIN
2654
+ TRANSACTION (0.1ms) ROLLBACK
2655
+ TRANSACTION (0.1ms) BEGIN
2656
+ TRANSACTION (0.1ms) ROLLBACK
2657
+ TRANSACTION (0.1ms) BEGIN
2658
+ TRANSACTION (0.1ms) ROLLBACK
2659
+ TRANSACTION (0.1ms) BEGIN
2660
+ TRANSACTION (0.1ms) ROLLBACK
2661
+ TRANSACTION (0.1ms) BEGIN
2662
+ TRANSACTION (0.3ms) ROLLBACK
2663
+ TRANSACTION (0.1ms) BEGIN
2664
+ TRANSACTION (0.1ms) ROLLBACK
2665
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
2666
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
2667
+ TRANSACTION (0.3ms) BEGIN
2668
+ TRANSACTION (0.3ms) ROLLBACK
data/spec/spec_helper.rb CHANGED
@@ -11,7 +11,7 @@ SimpleCov.start 'rails' do
11
11
  add_filter '/lib/hey_doctor/version.rb'
12
12
  end
13
13
 
14
- SimpleCov.minimum_coverage 95
14
+ SimpleCov.minimum_coverage 90
15
15
 
16
16
  RSpec.configure do |config|
17
17
  config.expect_with :rspec do |expectations|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hey_doctor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matheus Acosta
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-04-09 00:00:00.000000000 Z
12
+ date: 2021-09-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: dotenv-rails
@@ -126,6 +126,7 @@ dependencies:
126
126
  description: It mounts a middleware endpoint to check the stack health
127
127
  email:
128
128
  - matheus.martins@deliverycenter.com
129
+ - matheusthebr@gmail.com
129
130
  - erick.nascimento@deliverycenter.com
130
131
  executables: []
131
132
  extensions: []
@@ -220,53 +221,53 @@ signing_key:
220
221
  specification_version: 4
221
222
  summary: A health check gem implementation in ruby.
222
223
  test_files:
223
- - spec/dummy/Rakefile
224
- - spec/dummy/app/assets/config/manifest.js
225
- - spec/dummy/app/assets/stylesheets/application.css
226
- - spec/dummy/app/channels/application_cable/channel.rb
227
- - spec/dummy/app/channels/application_cable/connection.rb
228
- - spec/dummy/app/controllers/application_controller.rb
229
- - spec/dummy/app/controllers/home_controller.rb
230
- - spec/dummy/app/javascript/packs/application.js
231
- - spec/dummy/app/jobs/application_job.rb
232
- - spec/dummy/app/mailers/application_mailer.rb
233
- - spec/dummy/app/models/application_record.rb
234
- - spec/dummy/app/views/layouts/mailer.html.erb
235
- - spec/dummy/app/views/layouts/mailer.text.erb
224
+ - spec/spec_helper.rb
225
+ - spec/dummy/config.ru
226
+ - spec/dummy/tmp/pids/server.pid
227
+ - spec/dummy/tmp/development_secret.txt
236
228
  - spec/dummy/bin/rails
237
- - spec/dummy/bin/rake
238
229
  - spec/dummy/bin/setup
239
- - spec/dummy/config/application.rb
240
- - spec/dummy/config/boot.rb
230
+ - spec/dummy/bin/rake
231
+ - spec/dummy/log/test.log
232
+ - spec/dummy/log/development.log
233
+ - spec/dummy/Rakefile
234
+ - spec/dummy/db/schema.rb
235
+ - spec/dummy/config/locales/en.yml
236
+ - spec/dummy/config/routes.rb
241
237
  - spec/dummy/config/cable.yml
242
- - spec/dummy/config/database.yml
243
- - spec/dummy/config/environment.rb
244
- - spec/dummy/config/environments/development.rb
238
+ - spec/dummy/config/storage.yml
239
+ - spec/dummy/config/boot.rb
245
240
  - spec/dummy/config/environments/production.rb
246
241
  - spec/dummy/config/environments/test.rb
247
- - spec/dummy/config/initializers/application_controller_renderer.rb
248
- - spec/dummy/config/initializers/backtrace_silencers.rb
249
- - spec/dummy/config/initializers/cors.rb
250
- - spec/dummy/config/initializers/filter_parameter_logging.rb
242
+ - spec/dummy/config/environments/development.rb
243
+ - spec/dummy/config/puma.rb
244
+ - spec/dummy/config/database.yml
245
+ - spec/dummy/config/application.rb
246
+ - spec/dummy/config/environment.rb
251
247
  - spec/dummy/config/initializers/inflections.rb
252
- - spec/dummy/config/initializers/mime_types.rb
248
+ - spec/dummy/config/initializers/application_controller_renderer.rb
253
249
  - spec/dummy/config/initializers/redis.rb
254
250
  - spec/dummy/config/initializers/wrap_parameters.rb
255
- - spec/dummy/config/locales/en.yml
256
- - spec/dummy/config/puma.rb
257
- - spec/dummy/config/routes.rb
258
- - spec/dummy/config/storage.yml
259
- - spec/dummy/config.ru
260
- - spec/dummy/db/schema.rb
261
- - spec/dummy/log/development.log
262
- - spec/dummy/log/test.log
263
- - spec/dummy/tmp/development_secret.txt
264
- - spec/dummy/tmp/pids/server.pid
265
- - spec/lib/hey_doctor/hey_doctor_spec.rb
251
+ - spec/dummy/config/initializers/cors.rb
252
+ - spec/dummy/config/initializers/mime_types.rb
253
+ - spec/dummy/config/initializers/backtrace_silencers.rb
254
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
255
+ - spec/dummy/app/javascript/packs/application.js
256
+ - spec/dummy/app/models/application_record.rb
257
+ - spec/dummy/app/controllers/home_controller.rb
258
+ - spec/dummy/app/controllers/application_controller.rb
259
+ - spec/dummy/app/views/layouts/mailer.html.erb
260
+ - spec/dummy/app/views/layouts/mailer.text.erb
261
+ - spec/dummy/app/channels/application_cable/channel.rb
262
+ - spec/dummy/app/channels/application_cable/connection.rb
263
+ - spec/dummy/app/assets/stylesheets/application.css
264
+ - spec/dummy/app/assets/config/manifest.js
265
+ - spec/dummy/app/mailers/application_mailer.rb
266
+ - spec/dummy/app/jobs/application_job.rb
266
267
  - spec/rails_helper.rb
267
- - spec/requests/health_check_spec.rb
268
+ - spec/services/hey_doctor/check_sidekiq_health_service_spec.rb
268
269
  - spec/services/hey_doctor/check_application_health_service_spec.rb
269
- - spec/services/hey_doctor/check_database_health_service_spec.rb
270
270
  - spec/services/hey_doctor/check_redis_health_service_spec.rb
271
- - spec/services/hey_doctor/check_sidekiq_health_service_spec.rb
272
- - spec/spec_helper.rb
271
+ - spec/services/hey_doctor/check_database_health_service_spec.rb
272
+ - spec/requests/health_check_spec.rb
273
+ - spec/lib/hey_doctor/hey_doctor_spec.rb