nulogy_sso 2.3.0 → 2.3.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
  SHA256:
3
- metadata.gz: 86d1899df3c2f2abe748f0b336bc07042df9af4b9d89f94aa4466cb1c7ff5625
4
- data.tar.gz: a66c34cffe3871e31ce8066a7328fdcebbea3cf0104c16843a7868609ff68c70
3
+ metadata.gz: 8c3aa58409da6e710843d8ec1436fca9d43cc06703aa24ad4cf03dfce9054d66
4
+ data.tar.gz: 5f0a9b46ec00b53077b1a8912404fbb5a6e0510959b604eacc35cdceaa143dd5
5
5
  SHA512:
6
- metadata.gz: ae6c1570b70995302ff09d76f066e9ea8e5192ce78cb6960b041082f561983c61fecfb4d486a0f24539bd0fb1ea9f0c9207b601e0a35be6031855b18e5a322ee
7
- data.tar.gz: 5ee68099fe7ec6fa48eb81bd9e0f98196dae4fd94b8f00996d7aacd6dde6b88d7de3c60a127edf4fad0a2f47d1b4764a6a4035768b9df53d1ee759aaf965f087
6
+ metadata.gz: 5594461909374b803f64e425d14bee4d2c17f3d44a3ea79c48f3fe0b2e692a0a776d0d84c0a23c278025e5d286530bfb7ba2e874a13089223a9d75a44fb6a90e
7
+ data.tar.gz: 6afbea2d0ad0a83b0ef130ddb49a1722cb80875e4eac857214ebb0d56844b15f2748fd5f2611980e5060397f813421721187c0b2b86cbe8859f0cece8dc196c8
data/README.md CHANGED
@@ -2,9 +2,15 @@
2
2
 
3
3
  [![Gem](https://img.shields.io/gem/v/nulogy_sso?label=nulogy_sso)](https://rubygems.org/gems/nulogy_sso "View this project in Rubygems")
4
4
 
5
+ > **NOTE:** The default branch for this repository was changed to `main`. Please read [this Github blog post](https://github.blog/changelog/2020-10-01-the-default-branch-for-newly-created-repositories-is-now-main/) for more information.
6
+
5
7
  ## Auth0
6
8
  For more information on Auth0 see the [Auth0 documentation](https://auth0.com/docs/flows/concepts/auth-code#how-it-works).
7
9
 
10
+ ### Authentication Flow
11
+
12
+ The Auth0 docs can be confusing, so we provide [a more detailed picture of the Authentication Flow](https://drive.google.com/file/d/1fbPZR6FmfetRzyQZVz16Hs2rqepY4XJZ/view?usp=sharing) implemented by this gem.
13
+
8
14
  ## Installation
9
15
 
10
16
  This gem is a Rails Engine. It follows best practices [documented here](https://guides.rubyonrails.org/engines.html).
@@ -1,3 +1,3 @@
1
1
  module NulogySSO
2
- VERSION = "2.3.0"
2
+ VERSION = "2.3.1"
3
3
  end
Binary file
@@ -1,29 +1,65 @@
1
-  (1.2ms) SELECT sqlite_version(*)
2
-  (1.0ms) SELECT sqlite_version(*)
1
+  (0.6ms) SELECT sqlite_version(*)
2
+  (0.6ms) SELECT sqlite_version(*)
3
3
   (0.0ms) SELECT sqlite_version(*)
4
-  (0.1ms) SELECT sqlite_version(*)
5
-  (0.1ms) DROP TABLE IF EXISTS "users"
6
-  (0.8ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "active" boolean DEFAULT 0 NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
8
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
9
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190912211120)
10
-  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
4
+  (0.0ms) SELECT sqlite_version(*)
5
+  (0.0ms) DROP TABLE IF EXISTS "users"
6
+  (22.5ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "active" boolean DEFAULT 0 NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7
+  (21.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
8
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
9
+  (15.9ms) INSERT INTO "schema_migrations" (version) VALUES (20190912211120)
10
+  (16.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
11
11
  ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
12
-  (0.0ms) begin transaction
13
- ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2020-08-05 14:43:07.372534"], ["updated_at", "2020-08-05 14:43:07.372534"]]
14
-  (0.4ms) commit transaction
12
+  (0.1ms) begin transaction
13
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2021-07-26 20:48:32.559797"], ["updated_at", "2021-07-26 20:48:32.559797"]]
14
+  (14.1ms) commit transaction
15
15
  ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
16
16
  ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
17
17
   (0.0ms) begin transaction
18
- ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "2b01fa59c4c74162736a2cb624389712cfa71fdb"], ["created_at", "2020-08-05 14:43:07.375161"], ["updated_at", "2020-08-05 14:43:07.375161"]]
19
-  (0.3ms) commit transaction
20
-  (0.1ms) SELECT sqlite_version(*)
18
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "2b01fa59c4c74162736a2cb624389712cfa71fdb"], ["created_at", "2021-07-26 20:48:32.577262"], ["updated_at", "2021-07-26 20:48:32.577262"]]
19
+  (14.6ms) commit transaction
20
+  (0.2ms) SELECT sqlite_version(*)
21
21
   (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
22
22
   (0.1ms) begin transaction
23
+  (0.0ms) SAVEPOINT active_record_1
24
+ User Create (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:48:32.818151"], ["updated_at", "2021-07-26 20:48:32.818151"]]
25
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26
+  (0.1ms) rollback transaction
27
+  (0.0ms) begin transaction
28
+  (0.0ms) SAVEPOINT active_record_1
29
+ User Create (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:48:32.821640"], ["updated_at", "2021-07-26 20:48:32.821640"]]
30
+  (0.0ms) RELEASE SAVEPOINT active_record_1
31
+  (0.1ms) rollback transaction
32
+  (0.0ms) begin transaction
33
+  (0.0ms) SAVEPOINT active_record_1
34
+ User Create (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:48:32.823464"], ["updated_at", "2021-07-26 20:48:32.823464"]]
35
+  (0.0ms) RELEASE SAVEPOINT active_record_1
36
+  (0.1ms) rollback transaction
37
+  (0.0ms) begin transaction
23
38
   (0.0ms) rollback transaction
24
39
   (0.0ms) begin transaction
40
+  (0.1ms) rollback transaction
41
+  (0.0ms) begin transaction
25
42
   (0.0ms) rollback transaction
26
43
   (0.0ms) begin transaction
44
+  (0.0ms) SAVEPOINT active_record_1
45
+ User Create (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:48:32.828281"], ["updated_at", "2021-07-26 20:48:32.828281"]]
46
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47
+  (0.1ms) rollback transaction
48
+  (0.0ms) begin transaction
49
+  (0.0ms) SAVEPOINT active_record_1
50
+ User Create (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:48:32.829822"], ["updated_at", "2021-07-26 20:48:32.829822"]]
51
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52
+  (0.1ms) rollback transaction
53
+  (0.0ms) begin transaction
54
+  (0.0ms) SAVEPOINT active_record_1
55
+ User Create (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:48:32.831328"], ["updated_at", "2021-07-26 20:48:32.831328"]]
56
+  (0.0ms) RELEASE SAVEPOINT active_record_1
57
+  (0.1ms) rollback transaction
58
+  (0.0ms) begin transaction
59
+  (0.1ms) rollback transaction
60
+  (0.1ms) begin transaction
61
+  (0.1ms) rollback transaction
62
+  (0.1ms) begin transaction
27
63
   (0.1ms) rollback transaction
28
64
   (0.0ms) begin transaction
29
65
   (0.0ms) rollback transaction
@@ -36,6 +72,26 @@
36
72
   (0.0ms) begin transaction
37
73
   (0.0ms) rollback transaction
38
74
   (0.0ms) begin transaction
75
+  (0.0ms) rollback transaction
76
+  (0.0ms) begin transaction
77
+  (0.0ms) rollback transaction
78
+  (0.0ms) begin transaction
79
+  (0.0ms) rollback transaction
80
+  (0.0ms) begin transaction
81
+  (0.0ms) rollback transaction
82
+  (0.0ms) begin transaction
83
+  (0.0ms) rollback transaction
84
+  (0.6ms) SELECT sqlite_version(*)
85
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
86
+  (0.0ms) SELECT sqlite_version(*)
87
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
88
+  (0.0ms) begin transaction
89
+  (0.0ms) rollback transaction
90
+  (0.0ms) begin transaction
91
+  (0.0ms) rollback transaction
92
+  (0.0ms) begin transaction
93
+  (0.0ms) rollback transaction
94
+  (0.0ms) begin transaction
39
95
   (0.1ms) rollback transaction
40
96
   (0.0ms) begin transaction
41
97
   (0.0ms) rollback transaction
@@ -46,210 +102,209 @@
46
102
   (0.0ms) begin transaction
47
103
   (0.0ms) rollback transaction
48
104
   (0.0ms) begin transaction
49
-  (0.0ms) SAVEPOINT active_record_1
50
- User Create (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 14:43:07"], ["updated_at", "2020-08-05 14:43:07"]]
51
-  (0.0ms) RELEASE SAVEPOINT active_record_1
52
-  (0.3ms) rollback transaction
105
+  (0.0ms) rollback transaction
106
+  (0.0ms) begin transaction
107
+  (0.0ms) rollback transaction
108
+  (0.0ms) begin transaction
109
+  (0.0ms) rollback transaction
53
110
   (0.0ms) begin transaction
54
111
   (0.0ms) SAVEPOINT active_record_1
55
- User Create (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 14:43:07"], ["updated_at", "2020-08-05 14:43:07"]]
112
+ User Create (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:51:19"], ["updated_at", "2021-07-26 20:51:19"]]
56
113
   (0.0ms) RELEASE SAVEPOINT active_record_1
57
-  (0.3ms) rollback transaction
114
+  (0.4ms) rollback transaction
58
115
   (0.1ms) begin transaction
116
+  (0.2ms) SAVEPOINT active_record_1
117
+ User Create (0.7ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:51:19"], ["updated_at", "2021-07-26 20:51:19"]]
118
+  (0.2ms) RELEASE SAVEPOINT active_record_1
119
+  (0.2ms) rollback transaction
120
+  (0.0ms) begin transaction
59
121
   (0.1ms) SAVEPOINT active_record_1
60
- User Create (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 14:43:07"], ["updated_at", "2020-08-05 14:43:07"]]
122
+ User Create (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:51:19"], ["updated_at", "2021-07-26 20:51:19"]]
61
123
   (0.0ms) RELEASE SAVEPOINT active_record_1
62
-  (0.3ms) rollback transaction
124
+  (0.2ms) rollback transaction
63
125
   (0.0ms) begin transaction
64
-  (0.0ms) SAVEPOINT active_record_1
65
- User Create (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 14:43:07"], ["updated_at", "2020-08-05 14:43:07"]]
126
+  (0.1ms) SAVEPOINT active_record_1
127
+ User Create (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:51:19"], ["updated_at", "2021-07-26 20:51:19"]]
66
128
   (0.0ms) RELEASE SAVEPOINT active_record_1
67
-  (0.2ms) rollback transaction
129
+  (0.1ms) rollback transaction
68
130
   (0.0ms) begin transaction
69
131
   (0.0ms) SAVEPOINT active_record_1
70
- User Create (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 14:43:07"], ["updated_at", "2020-08-05 14:43:07"]]
132
+ User Create (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:51:19"], ["updated_at", "2021-07-26 20:51:19"]]
71
133
   (0.0ms) RELEASE SAVEPOINT active_record_1
72
134
   (0.2ms) rollback transaction
73
135
   (0.0ms) begin transaction
74
-  (0.0ms) SAVEPOINT active_record_1
75
- User Create (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 14:43:07"], ["updated_at", "2020-08-05 14:43:07"]]
136
+  (0.1ms) SAVEPOINT active_record_1
137
+ User Create (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:51:19"], ["updated_at", "2021-07-26 20:51:19"]]
76
138
   (0.0ms) RELEASE SAVEPOINT active_record_1
77
-  (0.3ms) rollback transaction
78
-  (0.1ms) begin transaction
79
-  (0.0ms) rollback transaction
80
-  (0.0ms) begin transaction
81
-  (0.0ms) rollback transaction
82
-  (0.0ms) begin transaction
83
-  (0.0ms) rollback transaction
84
-  (1.2ms) SELECT sqlite_version(*)
85
-  (0.9ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
86
-  (0.0ms) SELECT sqlite_version(*)
87
-  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
88
-  (0.1ms) begin transaction
89
139
   (0.1ms) rollback transaction
90
140
   (0.0ms) begin transaction
91
-  (0.0ms) rollback transaction
92
-  (0.0ms) begin transaction
93
-  (0.0ms) rollback transaction
94
-  (0.0ms) begin transaction
141
+  (0.1ms) SAVEPOINT active_record_1
142
+ User Create (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:51:19"], ["updated_at", "2021-07-26 20:51:19"]]
143
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95
144
   (0.1ms) rollback transaction
96
145
   (0.0ms) begin transaction
97
-  (0.0ms) rollback transaction
146
+  (0.1ms) SAVEPOINT active_record_1
147
+ User Create (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:51:19"], ["updated_at", "2021-07-26 20:51:19"]]
148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
149
+  (0.1ms) rollback transaction
98
150
   (0.0ms) begin transaction
99
-  (0.0ms) rollback transaction
151
+  (0.1ms) rollback transaction
100
152
   (0.0ms) begin transaction
101
153
   (0.0ms) rollback transaction
102
154
   (0.0ms) begin transaction
103
155
   (0.0ms) rollback transaction
156
+  (0.6ms) SELECT sqlite_version(*)
157
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
158
+  (0.0ms) SELECT sqlite_version(*)
159
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
104
160
   (0.0ms) begin transaction
105
161
   (0.0ms) rollback transaction
106
162
   (0.0ms) begin transaction
107
163
   (0.0ms) rollback transaction
108
164
   (0.0ms) begin transaction
109
-  (0.9ms) SELECT sqlite_version(*)
110
-  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
111
-  (0.0ms) SELECT sqlite_version(*)
112
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
113
-  (0.1ms) begin transaction
114
165
   (0.0ms) SAVEPOINT active_record_1
115
- User Create (1.8ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 16:02:08.135486"], ["updated_at", "2020-08-05 16:02:08.135486"]]
116
-  (0.1ms) RELEASE SAVEPOINT active_record_1
117
- Started GET "/hello_world" for 127.0.0.1 at 2020-08-05 12:02:09 -0400
118
- Processing by ApplicationController#hello_world as HTML
119
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@nulogy.com"], ["LIMIT", 1]]
120
- Rendering text template
121
- Rendered text template (Duration: 0.0ms | Allocations: 3)
122
- Completed 200 OK in 21ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 3827)
123
-  (0.3ms) rollback transaction
124
-  (0.0ms) begin transaction
125
-  (0.1ms) SAVEPOINT active_record_1
126
- User Create (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 16:02:09.947505"], ["updated_at", "2020-08-05 16:02:09.947505"]]
166
+ User Create (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:52:16.607305"], ["updated_at", "2021-07-26 20:52:16.607305"]]
127
167
   (0.0ms) RELEASE SAVEPOINT active_record_1
128
- Started GET "/hello_world" for 127.0.0.1 at 2020-08-05 12:02:10 -0400
168
+ Started GET "/hello_world" for 10.211.1.2 at 2021-07-26 16:52:17 -0400
129
169
  Processing by ApplicationController#hello_world as HTML
130
- Redirected to http://127.0.0.1:57568/nulogy_sso/login
170
+ Redirected to http://192.168.2.80:46311/nulogy_sso/login
131
171
  Filter chain halted as :authenticate_sso_user rendered or redirected
132
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 345)
133
- Started GET "/nulogy_sso/login" for 127.0.0.1 at 2020-08-05 12:02:10 -0400
172
+ Completed 302 Found in 16ms (ActiveRecord: 0.0ms | Allocations: 2409)
173
+ Started GET "/nulogy_sso/login" for 10.211.1.2 at 2021-07-26 16:52:17 -0400
134
174
  Processing by NulogySSO::AuthenticationController#login as HTML
135
- Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F127.0.0.1%253A57568%252Fhello_world&response_type=code&scope=openid+email
136
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 331)
137
-  (0.3ms) rollback transaction
138
-  (0.0ms) begin transaction
139
-  (0.1ms) SAVEPOINT active_record_1
140
- User Create (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 16:02:10.383111"], ["updated_at", "2020-08-05 16:02:10.383111"]]
141
-  (0.0ms) RELEASE SAVEPOINT active_record_1
142
- Started GET "/hello_world" for 127.0.0.1 at 2020-08-05 12:02:10 -0400
175
+ Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.2.80%253A46311%252Fhello_world&response_type=code&scope=openid+email
176
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 508)
177
+  (0.5ms) rollback transaction
178
+  (0.1ms) begin transaction
179
+  (0.2ms) SAVEPOINT active_record_1
180
+ User Create (0.7ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:52:17.893798"], ["updated_at", "2021-07-26 20:52:17.893798"]]
181
+  (0.1ms) RELEASE SAVEPOINT active_record_1
182
+ Started GET "/hello_world" for 10.211.1.2 at 2021-07-26 16:52:18 -0400
143
183
  Processing by ApplicationController#hello_world as HTML
144
- Redirected to http://127.0.0.1:57568/nulogy_sso/login
184
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@nulogy.com"], ["LIMIT", 1]]
185
+ Rendering text template
186
+ Rendered text template (Duration: 0.0ms | Allocations: 3)
187
+ Completed 200 OK in 12ms (Views: 7.5ms | ActiveRecord: 0.4ms | Allocations: 1949)
188
+  (0.4ms) rollback transaction
189
+  (0.1ms) begin transaction
190
+  (0.2ms) SAVEPOINT active_record_1
191
+ User Create (0.6ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:52:18.361417"], ["updated_at", "2021-07-26 20:52:18.361417"]]
192
+  (0.1ms) RELEASE SAVEPOINT active_record_1
193
+ Started GET "/hello_world" for 10.211.1.2 at 2021-07-26 16:52:18 -0400
194
+ Processing by ApplicationController#hello_world as HTML
195
+ Redirected to http://192.168.2.80:46311/nulogy_sso/login
145
196
  Filter chain halted as :authenticate_sso_user rendered or redirected
146
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 493)
147
- Started GET "/nulogy_sso/login" for 127.0.0.1 at 2020-08-05 12:02:10 -0400
197
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 324)
198
+ Started GET "/nulogy_sso/login" for 10.211.1.2 at 2021-07-26 16:52:18 -0400
148
199
  Processing by NulogySSO::AuthenticationController#login as HTML
149
- Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F127.0.0.1%253A57568%252Fhello_world&response_type=code&scope=openid+email
150
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 462)
151
-  (2.1ms) rollback transaction
200
+ Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.2.80%253A46311%252Fhello_world&response_type=code&scope=openid+email
201
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 293)
202
+  (0.1ms) rollback transaction
152
203
   (0.0ms) begin transaction
153
-  (0.1ms) SAVEPOINT active_record_1
154
- User Create (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 16:02:10.766596"], ["updated_at", "2020-08-05 16:02:10.766596"]]
155
-  (0.0ms) RELEASE SAVEPOINT active_record_1
156
- Started GET "/hello_world" for 127.0.0.1 at 2020-08-05 12:02:10 -0400
204
+ Started GET "/hello_world" for 10.211.1.2 at 2021-07-26 16:52:18 -0400
157
205
  Processing by ApplicationController#hello_world as HTML
158
- Redirected to http://127.0.0.1:57568/nulogy_sso/login
206
+ Redirected to http://192.168.2.80:46311/nulogy_sso/login
159
207
  Filter chain halted as :authenticate_sso_user rendered or redirected
160
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 324)
161
- Started GET "/nulogy_sso/login" for 127.0.0.1 at 2020-08-05 12:02:10 -0400
208
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 324)
209
+ Started GET "/nulogy_sso/login" for 10.211.1.2 at 2021-07-26 16:52:18 -0400
162
210
  Processing by NulogySSO::AuthenticationController#login as HTML
163
- Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F127.0.0.1%253A57568%252Fhello_world&response_type=code&scope=openid+email
164
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 293)
165
- Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F127.0.0.1%3A57568%2Fhello_world" for 127.0.0.1 at 2020-08-05 12:02:10 -0400
211
+ Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.2.80%253A46311%252Fhello_world&response_type=code&scope=openid+email
212
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 295)
213
+ Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F192.168.2.80%3A46311%2Fhello_world" for 10.211.1.2 at 2021-07-26 16:52:18 -0400
166
214
  Processing by NulogySSO::AuthenticationController#verify_authentication_code as HTML
167
- Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://127.0.0.1:57568/hello_world"}
168
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@nulogy.com"], ["LIMIT", 1]]
169
- Redirected to http://127.0.0.1:57568/hello_world
170
- Completed 302 Found in 13ms (ActiveRecord: 0.1ms | Allocations: 3031)
171
- Started GET "/hello_world" for 127.0.0.1 at 2020-08-05 12:02:10 -0400
172
- Processing by ApplicationController#hello_world as HTML
215
+ Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://192.168.2.80:46311/hello_world"}
173
216
  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@nulogy.com"], ["LIMIT", 1]]
174
217
  Rendering text template
175
- Rendered text template (Duration: 0.0ms | Allocations: 1)
176
- Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 717)
177
-  (0.4ms) rollback transaction
178
-  (0.0ms) begin transaction
179
- Started GET "/hello_world" for 127.0.0.1 at 2020-08-05 12:02:10 -0400
218
+ Rendered text template (Duration: 0.0ms | Allocations: 2)
219
+ Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 3121)
220
+  (0.2ms) rollback transaction
221
+  (0.1ms) begin transaction
222
+  (0.1ms) SAVEPOINT active_record_1
223
+ User Create (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:52:19.050896"], ["updated_at", "2021-07-26 20:52:19.050896"]]
224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
225
+ Started GET "/hello_world" for 10.211.1.2 at 2021-07-26 16:52:19 -0400
180
226
  Processing by ApplicationController#hello_world as HTML
181
- Redirected to http://127.0.0.1:57568/nulogy_sso/login
227
+ Redirected to http://192.168.2.80:46311/nulogy_sso/login
182
228
  Filter chain halted as :authenticate_sso_user rendered or redirected
183
229
  Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 324)
184
- Started GET "/nulogy_sso/login" for 127.0.0.1 at 2020-08-05 12:02:10 -0400
230
+ Started GET "/nulogy_sso/login" for 10.211.1.2 at 2021-07-26 16:52:19 -0400
185
231
  Processing by NulogySSO::AuthenticationController#login as HTML
186
- Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F127.0.0.1%253A57568%252Fhello_world&response_type=code&scope=openid+email
187
- Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 297)
188
- Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F127.0.0.1%3A57568%2Fhello_world" for 127.0.0.1 at 2020-08-05 12:02:10 -0400
232
+ Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.2.80%253A46311%252Fhello_world&response_type=code&scope=openid+email
233
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 303)
234
+ Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F192.168.2.80%3A46311%2Fhello_world" for 10.211.1.2 at 2021-07-26 16:52:19 -0400
189
235
  Processing by NulogySSO::AuthenticationController#verify_authentication_code as HTML
190
- Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://127.0.0.1:57568/hello_world"}
191
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@nulogy.com"], ["LIMIT", 1]]
236
+ Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://192.168.2.80:46311/hello_world"}
192
237
  Rendering text template
193
238
  Rendered text template (Duration: 0.0ms | Allocations: 1)
194
- Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 1876)
239
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 1434)
195
240
   (0.1ms) rollback transaction
196
241
   (0.0ms) begin transaction
197
242
   (0.1ms) SAVEPOINT active_record_1
198
- User Create (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 16:02:11.182823"], ["updated_at", "2020-08-05 16:02:11.182823"]]
199
-  (0.1ms) RELEASE SAVEPOINT active_record_1
200
- Started GET "/hello_world" for 127.0.0.1 at 2020-08-05 12:02:11 -0400
243
+ User Create (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:52:19.353742"], ["updated_at", "2021-07-26 20:52:19.353742"]]
244
+  (0.0ms) RELEASE SAVEPOINT active_record_1
245
+ Started GET "/hello_world" for 10.211.1.2 at 2021-07-26 16:52:19 -0400
201
246
  Processing by ApplicationController#hello_world as HTML
202
- Redirected to http://127.0.0.1:57568/nulogy_sso/login
247
+ Redirected to http://192.168.2.80:46311/nulogy_sso/login
203
248
  Filter chain halted as :authenticate_sso_user rendered or redirected
204
249
  Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 324)
205
- Started GET "/nulogy_sso/login" for 127.0.0.1 at 2020-08-05 12:02:11 -0400
250
+ Started GET "/nulogy_sso/login" for 10.211.1.2 at 2021-07-26 16:52:19 -0400
206
251
  Processing by NulogySSO::AuthenticationController#login as HTML
207
- Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F127.0.0.1%253A57568%252Fhello_world&response_type=code&scope=openid+email
208
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 293)
209
- Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F127.0.0.1%3A57568%2Fhello_world" for 127.0.0.1 at 2020-08-05 12:02:11 -0400
252
+ Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.2.80%253A46311%252Fhello_world&response_type=code&scope=openid+email
253
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms | Allocations: 298)
254
+ Started GET "/nulogy_sso/verify_authentication_code?code=FAKE_CODE&origin=http%3A%2F%2F192.168.2.80%3A46311%2Fhello_world" for 10.211.1.2 at 2021-07-26 16:52:19 -0400
210
255
  Processing by NulogySSO::AuthenticationController#verify_authentication_code as HTML
211
- Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://127.0.0.1:57568/hello_world"}
256
+ Parameters: {"code"=>"FAKE_CODE", "origin"=>"http://192.168.2.80:46311/hello_world"}
257
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@nulogy.com"], ["LIMIT", 1]]
258
+ Redirected to http://192.168.2.80:46311/hello_world
259
+ Completed 302 Found in 6ms (ActiveRecord: 0.1ms | Allocations: 1895)
260
+ Started GET "/hello_world" for 10.211.1.2 at 2021-07-26 16:52:19 -0400
261
+ Processing by ApplicationController#hello_world as HTML
262
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@nulogy.com"], ["LIMIT", 1]]
212
263
  Rendering text template
213
264
  Rendered text template (Duration: 0.0ms | Allocations: 1)
214
- Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 1400)
215
-  (0.3ms) rollback transaction
216
-  (0.1ms) begin transaction
217
-  (0.0ms) SAVEPOINT active_record_1
218
- User Create (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 16:02:11.382509"], ["updated_at", "2020-08-05 16:02:11.382509"]]
219
-  (0.0ms) RELEASE SAVEPOINT active_record_1
220
- Started GET "/api_endpoint" for 127.0.0.1 at 2020-08-05 12:02:11 -0400
221
- Processing by ApiController#api_endpoint as HTML
222
- Redirected to http://127.0.0.1:57568/nulogy_sso/login
223
- Filter chain halted as :authenticate_sso_user rendered or redirected
224
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 357)
225
- Started GET "/nulogy_sso/login" for 127.0.0.1 at 2020-08-05 12:02:11 -0400
226
- Processing by NulogySSO::AuthenticationController#login as HTML
227
- Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F127.0.0.1%253A57568%252Fapi_endpoint&response_type=code&scope=openid+email
228
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 298)
229
-  (0.3ms) rollback transaction
230
-  (0.0ms) begin transaction
231
-  (0.0ms) SAVEPOINT active_record_1
232
- User Create (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 16:02:11.685272"], ["updated_at", "2020-08-05 16:02:11.685272"]]
233
-  (0.0ms) RELEASE SAVEPOINT active_record_1
234
- Started GET "/api_endpoint" for 127.0.0.1 at 2020-08-05 12:02:11 -0400
265
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 715)
266
+  (0.4ms) rollback transaction
267
+  (0.2ms) begin transaction
268
+  (0.2ms) SAVEPOINT active_record_1
269
+ User Create (0.6ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:52:19.655906"], ["updated_at", "2021-07-26 20:52:19.655906"]]
270
+  (0.1ms) RELEASE SAVEPOINT active_record_1
271
+ Started GET "/api_endpoint" for 10.211.1.2 at 2021-07-26 16:52:19 -0400
235
272
  Processing by ApiController#api_endpoint as HTML
236
- Redirected to http://127.0.0.1:57568/nulogy_sso/login
273
+ Redirected to http://192.168.2.80:46311/nulogy_sso/login
237
274
  Filter chain halted as :authenticate_sso_user rendered or redirected
238
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 484)
239
- Started GET "/nulogy_sso/login" for 127.0.0.1 at 2020-08-05 12:02:11 -0400
275
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 523)
276
+ Started GET "/nulogy_sso/login" for 10.211.1.2 at 2021-07-26 16:52:19 -0400
240
277
  Processing by NulogySSO::AuthenticationController#login as HTML
241
- Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F127.0.0.1%253A57568%252Fapi_endpoint&response_type=code&scope=openid+email
242
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 456)
243
-  (0.3ms) rollback transaction
244
-  (0.0ms) begin transaction
245
-  (0.0ms) SAVEPOINT active_record_1
246
- User Create (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2020-08-05 16:02:11.949245"], ["updated_at", "2020-08-05 16:02:11.949245"]]
247
-  (0.0ms) RELEASE SAVEPOINT active_record_1
248
- Started GET "/api_endpoint" for 127.0.0.1 at 2020-08-05 12:02:12 -0400
278
+ Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.2.80%253A46311%252Fapi_endpoint&response_type=code&scope=openid+email
279
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 458)
280
+  (0.4ms) rollback transaction
281
+  (0.1ms) begin transaction
282
+  (0.2ms) SAVEPOINT active_record_1
283
+ User Create (0.6ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:52:20.018256"], ["updated_at", "2021-07-26 20:52:20.018256"]]
284
+  (0.1ms) RELEASE SAVEPOINT active_record_1
285
+ Started GET "/api_endpoint" for 10.211.1.2 at 2021-07-26 16:52:20 -0400
249
286
  Processing by ApiController#api_endpoint as HTML
250
287
  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@nulogy.com"], ["LIMIT", 1]]
251
288
  Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 601)
289
+  (0.5ms) rollback transaction
290
+  (0.1ms) begin transaction
291
+  (0.2ms) SAVEPOINT active_record_1
292
+ User Create (0.6ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "test@nulogy.com"], ["created_at", "2021-07-26 20:52:20.345464"], ["updated_at", "2021-07-26 20:52:20.345464"]]
293
+  (0.1ms) RELEASE SAVEPOINT active_record_1
294
+ Started GET "/api_endpoint" for 10.211.1.2 at 2021-07-26 16:52:20 -0400
295
+ Processing by ApiController#api_endpoint as HTML
296
+ Redirected to http://192.168.2.80:46311/nulogy_sso/login
297
+ Filter chain halted as :authenticate_sso_user rendered or redirected
298
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 315)
299
+ Started GET "/nulogy_sso/login" for 10.211.1.2 at 2021-07-26 16:52:20 -0400
300
+ Processing by NulogySSO::AuthenticationController#login as HTML
301
+ Redirected to http://localhost:1080/authorize?audience=mock_audience&client_id=mock_client_id&redirect_uri=mock_login_uri%3Forigin%3Dhttp%253A%252F%252F192.168.2.80%253A46311%252Fapi_endpoint&response_type=code&scope=openid+email
302
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 301)
252
303
   (0.3ms) rollback transaction
304
+  (0.1ms) begin transaction
305
+  (0.2ms) rollback transaction
306
+  (0.1ms) begin transaction
307
+  (0.1ms) rollback transaction
253
308
   (0.0ms) begin transaction
254
309
   (0.0ms) rollback transaction
255
310
   (0.0ms) begin transaction
@@ -257,22 +312,14 @@ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 601)
257
312
   (0.0ms) begin transaction
258
313
   (0.0ms) rollback transaction
259
314
   (0.0ms) begin transaction
260
-  (0.1ms) rollback transaction
261
-  (0.0ms) begin transaction
262
315
   (0.0ms) rollback transaction
263
316
   (0.0ms) begin transaction
264
317
   (0.0ms) rollback transaction
265
-  (0.1ms) begin transaction
266
-  (0.0ms) rollback transaction
267
318
   (0.0ms) begin transaction
268
319
   (0.0ms) rollback transaction
269
320
   (0.0ms) begin transaction
270
321
   (0.0ms) rollback transaction
271
322
   (0.0ms) begin transaction
272
-  (0.1ms) rollback transaction
273
-  (0.0ms) begin transaction
274
323
   (0.0ms) rollback transaction
275
324
   (0.0ms) begin transaction
276
-  (0.1ms) rollback transaction
277
-  (0.0ms) begin transaction
278
-  (0.1ms) rollback transaction
325
+  (0.0ms) rollback transaction
@@ -1 +1 @@
1
- df6fb1a6d59e0f35d73bd0bfa9900e64f2b99bcec12e7cd6335ac9dc49112da5ddc5cf451e9e3cdcb9515e1fb3de0f01df6259615bdf708c1e791de822f5886b
1
+ 2e5d3159f17efdeba8848ac4d0deae683d60815c794d80fd5b624eba87029f75528bbedc692d1d394656e7df86479210e59f61ef481738b62d1b7601e757d888
data/spec/examples.txt CHANGED
@@ -1,24 +1,24 @@
1
1
  example_id | status | run_time |
2
2
  ---------------------------------------------------------------- | ------ | --------------- |
3
- ./spec/features/nulogy_sso/sso_login_spec.rb[1:1:1] | passed | 0.19545 seconds |
4
- ./spec/features/nulogy_sso/sso_login_spec.rb[1:1:2] | passed | 0.19901 seconds |
5
- ./spec/features/nulogy_sso/sso_login_spec.rb[1:1:3] | passed | 0.29773 seconds |
6
- ./spec/features/nulogy_sso/sso_login_spec.rb[1:2:1] | passed | 1.82 seconds |
7
- ./spec/features/nulogy_sso/sso_login_spec.rb[1:2:2] | passed | 0.30642 seconds |
8
- ./spec/features/nulogy_sso/sso_login_spec.rb[1:2:3] | passed | 0.43534 seconds |
9
- ./spec/features/nulogy_sso/sso_login_spec.rb[1:3:1] | passed | 0.15349 seconds |
10
- ./spec/features/nulogy_sso/sso_login_spec.rb[1:3:2] | passed | 0.26377 seconds |
11
- ./spec/features/nulogy_sso/sso_login_spec.rb[1:3:3] | passed | 0.30293 seconds |
12
- ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:1] | passed | 0.00099 seconds |
13
- ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:2:1] | passed | 0.00995 seconds |
14
- ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:2:2] | passed | 0.00889 seconds |
15
- ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:3:1] | passed | 0.00889 seconds |
16
- ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:1] | passed | 0.00892 seconds |
17
- ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:2] | passed | 0.0085 seconds |
18
- ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:3] | passed | 0.00089 seconds |
19
- ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:4] | passed | 0.00847 seconds |
20
- ./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:1] | passed | 0.00835 seconds |
21
- ./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:2] | passed | 0.00062 seconds |
22
- ./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:3] | passed | 0.00162 seconds |
23
- ./spec/unit/services/nulogy_sso/origin_redirector_spec.rb[1:1:1] | passed | 0.00051 seconds |
24
- ./spec/unit/services/nulogy_sso/origin_redirector_spec.rb[1:1:2] | passed | 0.00033 seconds |
3
+ ./spec/features/nulogy_sso/sso_login_spec.rb[1:1:1] | passed | 0.34186 seconds |
4
+ ./spec/features/nulogy_sso/sso_login_spec.rb[1:1:2] | passed | 0.29915 seconds |
5
+ ./spec/features/nulogy_sso/sso_login_spec.rb[1:1:3] | passed | 0.33583 seconds |
6
+ ./spec/features/nulogy_sso/sso_login_spec.rb[1:2:1] | passed | 0.46746 seconds |
7
+ ./spec/features/nulogy_sso/sso_login_spec.rb[1:2:2] | passed | 1.29 seconds |
8
+ ./spec/features/nulogy_sso/sso_login_spec.rb[1:2:3] | passed | 0.31621 seconds |
9
+ ./spec/features/nulogy_sso/sso_login_spec.rb[1:3:1] | passed | 0.32688 seconds |
10
+ ./spec/features/nulogy_sso/sso_login_spec.rb[1:3:2] | passed | 0.36212 seconds |
11
+ ./spec/features/nulogy_sso/sso_login_spec.rb[1:3:3] | passed | 0.35009 seconds |
12
+ ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:1] | passed | 0.00178 seconds |
13
+ ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:2:1] | passed | 0.00675 seconds |
14
+ ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:2:2] | passed | 0.00583 seconds |
15
+ ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:1:3:1] | passed | 0.00674 seconds |
16
+ ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:1] | passed | 0.01439 seconds |
17
+ ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:2] | passed | 0.00824 seconds |
18
+ ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:3] | passed | 0.00121 seconds |
19
+ ./spec/unit/services/nulogy_sso/authenticator_spec.rb[1:2:4] | passed | 0.0211 seconds |
20
+ ./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:1] | passed | 0.00382 seconds |
21
+ ./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:2] | passed | 0.00061 seconds |
22
+ ./spec/unit/services/nulogy_sso/cookie_token_store_spec.rb[1:3] | passed | 0.00049 seconds |
23
+ ./spec/unit/services/nulogy_sso/origin_redirector_spec.rb[1:1:1] | passed | 0.00077 seconds |
24
+ ./spec/unit/services/nulogy_sso/origin_redirector_spec.rb[1:1:2] | passed | 0.00045 seconds |
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nulogy_sso
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nulogy Corporation
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-05 00:00:00.000000000 Z
11
+ date: 2021-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: auth0
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '4.8'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '6.0'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '4.8'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '6.0'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: auth0_rs256_jwt_verifier
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -142,7 +148,7 @@ dependencies:
142
148
  - - "~>"
143
149
  - !ruby/object:Gem::Version
144
150
  version: '3.7'
145
- description:
151
+ description:
146
152
  email:
147
153
  - engineering@nulogy.com
148
154
  executables: []
@@ -233,7 +239,7 @@ files:
233
239
  homepage: https://nulogy.com
234
240
  licenses: []
235
241
  metadata: {}
236
- post_install_message:
242
+ post_install_message:
237
243
  rdoc_options: []
238
244
  require_paths:
239
245
  - lib
@@ -248,73 +254,73 @@ required_rubygems_version: !ruby/object:Gem::Requirement
248
254
  - !ruby/object:Gem::Version
249
255
  version: '0'
250
256
  requirements: []
251
- rubygems_version: 3.0.8
252
- signing_key:
257
+ rubygems_version: 3.0.3
258
+ signing_key:
253
259
  specification_version: 4
254
- summary: Rails Engine For Nulogy's Auth Integration
260
+ summary: Rails Engine For Nulogy's SSO Integration
255
261
  test_files:
256
- - spec/spec_helper.rb
257
- - spec/unit/services/nulogy_sso/origin_redirector_spec.rb
258
- - spec/unit/services/nulogy_sso/authenticator_spec.rb
259
- - spec/unit/services/nulogy_sso/cookie_token_store_spec.rb
262
+ - spec/examples.txt
263
+ - spec/rails_helper.rb
264
+ - spec/support/mock_auth0_verifier.rb
265
+ - spec/features/nulogy_sso/sso_login_spec.rb
266
+ - spec/feature_spec_helper.rb
267
+ - spec/dummy/Rakefile
260
268
  - spec/dummy/app/models/application_record.rb
261
269
  - spec/dummy/app/models/user.rb
262
- - spec/dummy/app/jobs/application_job.rb
263
270
  - spec/dummy/app/controllers/application_controller.rb
264
271
  - spec/dummy/app/controllers/api_controller.rb
265
272
  - spec/dummy/app/views/layouts/application.html.erb
273
+ - spec/dummy/app/channels/application_cable/connection.rb
274
+ - spec/dummy/app/channels/application_cable/channel.rb
266
275
  - spec/dummy/app/assets/config/manifest.js
267
276
  - spec/dummy/app/assets/javascripts/application.js
268
277
  - spec/dummy/app/assets/stylesheets/application.css
269
278
  - spec/dummy/app/helpers/application_helper.rb
270
- - spec/dummy/app/channels/application_cable/connection.rb
271
- - spec/dummy/app/channels/application_cable/channel.rb
272
- - spec/dummy/bin/update
273
- - spec/dummy/bin/rake
274
- - spec/dummy/bin/setup
275
- - spec/dummy/bin/bundle
276
- - spec/dummy/bin/yarn
277
- - spec/dummy/bin/rails
278
- - spec/dummy/config/routes.rb
279
- - spec/dummy/config/locales/en.yml
280
- - spec/dummy/config/cable.yml
281
- - spec/dummy/config/sso.yml
282
- - spec/dummy/config/environments/production.rb
279
+ - spec/dummy/app/jobs/application_job.rb
280
+ - spec/dummy/config/environment.rb
283
281
  - spec/dummy/config/environments/development.rb
284
282
  - spec/dummy/config/environments/test.rb
285
- - spec/dummy/config/spring.rb
286
- - spec/dummy/config/environment.rb
287
- - spec/dummy/config/storage.yml
283
+ - spec/dummy/config/environments/production.rb
288
284
  - spec/dummy/config/application.rb
289
- - spec/dummy/config/puma.rb
285
+ - spec/dummy/config/routes.rb
290
286
  - spec/dummy/config/database.yml
287
+ - spec/dummy/config/spring.rb
291
288
  - spec/dummy/config/boot.rb
289
+ - spec/dummy/config/storage.yml
290
+ - spec/dummy/config/locales/en.yml
291
+ - spec/dummy/config/cable.yml
292
+ - spec/dummy/config/sso.yml
293
+ - spec/dummy/config/initializers/wrap_parameters.rb
292
294
  - spec/dummy/config/initializers/application_controller_renderer.rb
293
- - spec/dummy/config/initializers/backtrace_silencers.rb
294
- - spec/dummy/config/initializers/mime_types.rb
295
295
  - spec/dummy/config/initializers/filter_parameter_logging.rb
296
- - spec/dummy/config/initializers/wrap_parameters.rb
296
+ - spec/dummy/config/initializers/mime_types.rb
297
+ - spec/dummy/config/initializers/backtrace_silencers.rb
298
+ - spec/dummy/config/initializers/inflections.rb
297
299
  - spec/dummy/config/initializers/cookies_serializer.rb
298
300
  - spec/dummy/config/initializers/content_security_policy.rb
299
- - spec/dummy/config/initializers/inflections.rb
301
+ - spec/dummy/config/puma.rb
300
302
  - spec/dummy/config.ru
301
- - spec/dummy/Rakefile
302
- - spec/dummy/public/favicon.ico
303
- - spec/dummy/public/422.html
304
- - spec/dummy/public/apple-touch-icon.png
305
- - spec/dummy/public/500.html
306
- - spec/dummy/public/404.html
307
- - spec/dummy/public/apple-touch-icon-precomposed.png
308
- - spec/dummy/public/robots.txt
309
- - spec/dummy/package.json
310
303
  - spec/dummy/db/schema.rb
311
304
  - spec/dummy/db/test.sqlite3
312
305
  - spec/dummy/db/migrate/20190912211120_create_users.rb
306
+ - spec/dummy/tmp/development_secret.txt
307
+ - spec/dummy/package.json
313
308
  - spec/dummy/log/test.log
314
309
  - spec/dummy/log/development.log
315
- - spec/dummy/tmp/development_secret.txt
316
- - spec/examples.txt
317
- - spec/features/nulogy_sso/sso_login_spec.rb
318
- - spec/support/mock_auth0_verifier.rb
319
- - spec/feature_spec_helper.rb
320
- - spec/rails_helper.rb
310
+ - spec/dummy/bin/yarn
311
+ - spec/dummy/bin/bundle
312
+ - spec/dummy/bin/rails
313
+ - spec/dummy/bin/update
314
+ - spec/dummy/bin/rake
315
+ - spec/dummy/bin/setup
316
+ - spec/dummy/public/robots.txt
317
+ - spec/dummy/public/500.html
318
+ - spec/dummy/public/apple-touch-icon-precomposed.png
319
+ - spec/dummy/public/422.html
320
+ - spec/dummy/public/apple-touch-icon.png
321
+ - spec/dummy/public/favicon.ico
322
+ - spec/dummy/public/404.html
323
+ - spec/unit/services/nulogy_sso/cookie_token_store_spec.rb
324
+ - spec/unit/services/nulogy_sso/origin_redirector_spec.rb
325
+ - spec/unit/services/nulogy_sso/authenticator_spec.rb
326
+ - spec/spec_helper.rb