multi_session 1.1.1 → 1.1.2
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 +4 -4
- data/README.md +8 -0
- data/lib/generators/templates/multi_session.rb +3 -0
- data/lib/multi_session/session.rb +6 -3
- data/lib/multi_session/version.rb +1 -1
- data/lib/multi_session.rb +3 -0
- data/spec/dummy/config/initializers/multi_session.rb +10 -0
- data/spec/dummy/log/test.log +16 -501
- metadata +5 -5
- data/spec/dummy/log/development.log +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a322fc88af7d9e2bd2d78890eb8b1b8c5dcb7a88e507e483307dd5e0e7496c34
|
4
|
+
data.tar.gz: cc6d3967a80f57e985d5e433ee7ce5decbc2d4a6bd6b367a8c2a73e36fa2b1d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3218f0adb548595c4cae01a439c22438846e6274da0e7cd5f60d01f8fd8a9a6a868b55f739e956d71cde6ff7330bb870d60cc80c921153b2d5e904757e41decf
|
7
|
+
data.tar.gz: 67555d4b3b344dc263f1efa62a311b6b767fd4013ed401b9c15b7aee633e699e952b27ff2f7cafa6e9394bc8518930edb25f1d99fd6c2fa69ec755cba8769e36
|
data/README.md
CHANGED
@@ -71,6 +71,7 @@ For the current version `multi_session`, there these are the configuration value
|
|
71
71
|
|---------------------------------------|-------------------------|-------------------------------------------------------|
|
72
72
|
| `expires` | ActiveSupport::Duration | expiration period for `multi_session` cookies/values |
|
73
73
|
| `authenticated_encrypted_cookie_salt` | String | Salt used to derive key for GCM encryption |
|
74
|
+
| `credentials_strategy` | String/Symbol | Strategy for managing credentials. |
|
74
75
|
|
75
76
|
|
76
77
|
To configure `multi_session`, first generate an initializer using the built-in rails generator:
|
@@ -90,6 +91,13 @@ MultiSession.setup do |config|
|
|
90
91
|
|
91
92
|
# Salt used to derive key for GCM encryption. Default value is 'multi session authenticated encrypted cookie'
|
92
93
|
config.authenticated_encrypted_cookie_salt = 'my multi session salt value'
|
94
|
+
|
95
|
+
# Specify the strategy by which you are managing credentials in your application
|
96
|
+
# Defaults to :credentials or :secrets depending on what your application is using
|
97
|
+
# 'credentials' (default) - uses Rails encrypted credentials stored in credentials.yml.enc via Rails.application.credentials
|
98
|
+
# 'secrets' - uses Rails secrets specified in secrets.yml via Rails.application.secrets
|
99
|
+
# 'creds' - uses the [Creds](https://github.com/freeletics/creds) gem via Rails.configuration.creds
|
100
|
+
config.credentials_strategy = 'credentials'
|
93
101
|
end
|
94
102
|
```
|
95
103
|
|
@@ -4,4 +4,7 @@ MultiSession.setup do |config|
|
|
4
4
|
|
5
5
|
# Salt used to derive key for GCM encryption. Default value is 'multi session authenticated encrypted cookie'
|
6
6
|
# config.authenticated_encrypted_cookie_salt = 'multi session authenticated encrypted cookie'
|
7
|
+
|
8
|
+
# Specify the strategy that your rails application is using for managing credentials.
|
9
|
+
config.credentials_strategy = '<%= Rails.application.respond_to?(:credentials) ? :credentials : :secrets %>'
|
7
10
|
end
|
@@ -46,10 +46,13 @@ module MultiSession
|
|
46
46
|
private
|
47
47
|
|
48
48
|
def multi_session_keys
|
49
|
-
keys =
|
50
|
-
|
51
|
-
|
49
|
+
keys = case MultiSession.credentials_strategy.to_sym
|
50
|
+
when :creds
|
51
|
+
Rails.configuration.creds.multi_session_keys!
|
52
|
+
when :secrets
|
52
53
|
Rails.application.secrets[:multi_session_keys]
|
54
|
+
else
|
55
|
+
Rails.application.credentials[:multi_session_keys]
|
53
56
|
end
|
54
57
|
keys.symbolize_keys
|
55
58
|
end
|
data/lib/multi_session.rb
CHANGED
@@ -0,0 +1,10 @@
|
|
1
|
+
MultiSession.setup do |config|
|
2
|
+
# Uncomment to force multi_session cookies to expire after a period of time
|
3
|
+
# config.expires = 30.minutes
|
4
|
+
|
5
|
+
# Salt used to derive key for GCM encryption. Default value is 'multi session authenticated encrypted cookie'
|
6
|
+
# config.authenticated_encrypted_cookie_salt = 'multi session authenticated encrypted cookie'
|
7
|
+
|
8
|
+
# Specify the strategy that your rails application is using for managing credentials.
|
9
|
+
config.credentials_strategy = 'credentials'
|
10
|
+
end
|
data/spec/dummy/log/test.log
CHANGED
@@ -1,523 +1,38 @@
|
|
1
|
-
Started GET "/" for 127.0.0.1 at 2018-
|
2
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 10:56:10 -0500
|
3
|
-
Processing by MultiSessionTestController#some_action as HTML
|
4
|
-
Completed 406 Not Acceptable in 82ms
|
5
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 10:56:47 -0500
|
6
|
-
Processing by MultiSessionTestController#some_action as HTML
|
7
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
8
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.8ms)
|
9
|
-
Completed 200 OK in 8ms (Views: 6.1ms)
|
10
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 11:03:45 -0500
|
11
|
-
Processing by MultiSessionTestController#some_action as HTML
|
12
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
13
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.7ms)
|
14
|
-
Completed 200 OK in 8ms (Views: 5.8ms)
|
15
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 11:04:32 -0500
|
16
|
-
Processing by MultiSessionTestController#some_action as HTML
|
17
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
18
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.7ms)
|
19
|
-
Completed 200 OK in 7ms (Views: 5.7ms)
|
20
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 11:05:07 -0500
|
21
|
-
Processing by MultiSessionTestController#some_action as HTML
|
22
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
23
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.7ms)
|
24
|
-
Completed 200 OK in 13ms (Views: 6.0ms)
|
25
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 11:06:04 -0500
|
26
|
-
Processing by MultiSessionTestController#some_action as HTML
|
27
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
28
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.7ms)
|
29
|
-
Completed 200 OK in 13ms (Views: 6.7ms)
|
30
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 11:06:04 -0500
|
31
|
-
Processing by MultiSessionTestController#some_action as HTML
|
32
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
33
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.0ms)
|
34
|
-
Completed 200 OK in 5ms (Views: 0.6ms)
|
35
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 11:07:30 -0500
|
36
|
-
Processing by MultiSessionTestController#some_action as HTML
|
37
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
38
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.7ms)
|
39
|
-
Completed 200 OK in 12ms (Views: 5.8ms)
|
40
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 11:08:14 -0500
|
41
|
-
Processing by MultiSessionTestController#some_action as HTML
|
42
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
43
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.7ms)
|
44
|
-
Completed 200 OK in 7ms (Views: 5.7ms)
|
45
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 11:13:33 -0500
|
46
|
-
Processing by MultiSessionTestController#some_action as HTML
|
47
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
48
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.7ms)
|
49
|
-
Completed 200 OK in 8ms (Views: 6.0ms)
|
50
|
-
Started GET "/encrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:13:33 -0500
|
51
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
52
|
-
Completed 200 OK in 4ms
|
53
|
-
Started GET "/decrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:13:33 -0500
|
54
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
55
|
-
Completed 500 Internal Server Error in 6ms
|
56
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 11:13:59 -0500
|
57
|
-
Processing by MultiSessionTestController#some_action as HTML
|
58
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
59
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.7ms)
|
60
|
-
Completed 200 OK in 8ms (Views: 5.8ms)
|
61
|
-
Started GET "/encrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:13:59 -0500
|
62
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
63
|
-
Completed 200 OK in 9ms
|
64
|
-
Started GET "/decrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:13:59 -0500
|
65
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
66
|
-
Completed 406 Not Acceptable in 99ms
|
67
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 11:14:35 -0500
|
68
|
-
Processing by MultiSessionTestController#some_action as HTML
|
69
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
70
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.7ms)
|
71
|
-
Completed 200 OK in 8ms (Views: 5.8ms)
|
72
|
-
Started GET "/encrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:14:35 -0500
|
73
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
74
|
-
Completed 200 OK in 5ms
|
75
|
-
Started GET "/decrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:14:35 -0500
|
76
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
77
|
-
Rendering inline template
|
78
|
-
Rendered inline template (0.2ms)
|
79
|
-
Completed 200 OK in 2ms (Views: 0.4ms)
|
80
|
-
Started GET "/encrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:15:18 -0500
|
81
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
82
|
-
Completed 200 OK in 5ms
|
83
|
-
Started GET "/decrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:15:18 -0500
|
84
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
85
|
-
Rendering inline template
|
86
|
-
Rendered inline template (0.9ms)
|
87
|
-
Completed 200 OK in 6ms (Views: 3.3ms)
|
88
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo" for 127.0.0.1 at 2018-10-09 11:17:25 -0500
|
89
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
90
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo"}}
|
91
|
-
Completed 400 Bad Request in 5ms
|
92
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo" for 127.0.0.1 at 2018-10-09 11:17:37 -0500
|
93
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
94
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo"}}
|
95
|
-
Completed 200 OK in 5ms
|
96
|
-
Started GET "/decrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:17:37 -0500
|
97
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
98
|
-
Rendering inline template
|
99
|
-
Rendered inline template (1.1ms)
|
100
|
-
Completed 200 OK in 19ms (Views: 16.7ms)
|
101
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo" for 127.0.0.1 at 2018-10-09 11:18:07 -0500
|
102
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
103
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo"}}
|
104
|
-
Completed 200 OK in 5ms
|
105
|
-
Started GET "/decrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:18:07 -0500
|
106
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
107
|
-
Rendering inline template
|
108
|
-
Rendered inline template (2.4ms)
|
109
|
-
Completed 200 OK in 16ms (Views: 12.5ms)
|
110
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo" for 127.0.0.1 at 2018-10-09 11:18:47 -0500
|
111
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
112
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo"}}
|
113
|
-
Completed 200 OK in 5ms
|
114
|
-
Started GET "/decrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:18:47 -0500
|
115
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
116
|
-
Rendering inline template
|
117
|
-
Rendered inline template (1.1ms)
|
118
|
-
Completed 200 OK in 7ms (Views: 4.9ms)
|
119
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo" for 127.0.0.1 at 2018-10-09 11:19:33 -0500
|
120
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
121
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo"}}
|
122
|
-
Completed 200 OK in 6ms
|
123
|
-
Started GET "/decrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:19:33 -0500
|
124
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
125
|
-
Rendering inline template
|
126
|
-
Rendered inline template (1.2ms)
|
127
|
-
Completed 200 OK in 8ms (Views: 5.5ms)
|
128
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-09 11:21:12 -0500
|
129
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
130
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
131
|
-
Completed 200 OK in 12ms
|
132
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-09 11:21:33 -0500
|
133
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
134
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
135
|
-
Completed 200 OK in 13ms
|
136
|
-
Started GET "/decrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:21:33 -0500
|
137
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
138
|
-
Rendering inline template
|
139
|
-
Rendered inline template (1.3ms)
|
140
|
-
Completed 200 OK in 12ms (Views: 7.6ms)
|
141
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-09 11:23:37 -0500
|
142
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
143
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
144
|
-
Completed 200 OK in 12ms
|
145
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-09 11:23:49 -0500
|
146
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
147
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
148
|
-
Completed 200 OK in 14ms
|
149
|
-
Started GET "/decrypt_multi_sessions" for 127.0.0.1 at 2018-10-09 11:23:49 -0500
|
150
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
151
|
-
Rendering inline template
|
152
|
-
Rendered inline template (3.0ms)
|
153
|
-
Completed 200 OK in 13ms (Views: 9.5ms)
|
154
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-09 11:26:31 -0500
|
155
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
156
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
157
|
-
Completed 200 OK in 19ms
|
158
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-09 11:26:31 -0500
|
159
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
160
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
161
|
-
Completed 500 Internal Server Error in 2ms
|
162
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-09 11:26:54 -0500
|
163
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
164
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
165
|
-
Completed 200 OK in 12ms
|
166
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-09 11:26:54 -0500
|
167
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
168
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
169
|
-
Rendering inline template
|
170
|
-
Rendered inline template (0.7ms)
|
171
|
-
Completed 200 OK in 12ms (Views: 2.8ms)
|
172
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-09 11:28:35 -0500
|
173
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
174
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
175
|
-
Completed 200 OK in 12ms
|
176
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-09 11:28:35 -0500
|
177
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
178
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
179
|
-
Rendering inline template
|
180
|
-
Rendered inline template (0.6ms)
|
181
|
-
Completed 200 OK in 15ms (Views: 3.1ms)
|
182
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-09 11:29:35 -0500
|
183
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
184
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
185
|
-
Completed 200 OK in 12ms
|
186
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-09 11:29:35 -0500
|
187
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
188
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
189
|
-
Rendering inline template
|
190
|
-
Rendered inline template (0.7ms)
|
191
|
-
Completed 200 OK in 14ms (Views: 3.0ms)
|
192
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 11:29:39 -0500
|
193
|
-
Processing by MultiSessionTestController#some_action as HTML
|
194
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
195
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.7ms)
|
196
|
-
Completed 200 OK in 8ms (Views: 5.9ms)
|
197
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-09 11:29:39 -0500
|
198
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
199
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
200
|
-
Completed 200 OK in 12ms
|
201
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-09 11:29:39 -0500
|
202
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
203
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
204
|
-
Rendering inline template
|
205
|
-
Rendered inline template (1.1ms)
|
206
|
-
Completed 200 OK in 14ms (Views: 2.6ms)
|
207
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 13:52:25 -0500
|
208
|
-
Processing by MultiSessionTestController#some_action as HTML
|
209
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
210
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.8ms)
|
211
|
-
Completed 200 OK in 8ms (Views: 6.5ms)
|
212
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-09 13:52:25 -0500
|
213
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
214
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
215
|
-
Completed 200 OK in 12ms
|
216
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-09 13:52:25 -0500
|
217
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
218
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
219
|
-
Rendering inline template
|
220
|
-
Rendered inline template (0.2ms)
|
221
|
-
Completed 200 OK in 11ms (Views: 0.6ms)
|
222
|
-
Started GET "/" for 127.0.0.1 at 2018-10-09 13:53:56 -0500
|
1
|
+
Started GET "/" for 127.0.0.1 at 2018-11-15 10:18:26 -0600
|
223
2
|
Processing by MultiSessionTestController#some_action as HTML
|
224
3
|
Rendering multi_session_test/some_action.html.erb within layouts/application
|
225
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.
|
226
|
-
Completed 200 OK in
|
227
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-
|
4
|
+
Rendered multi_session_test/some_action.html.erb within layouts/application (0.5ms)
|
5
|
+
Completed 200 OK in 7ms (Views: 6.1ms)
|
6
|
+
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-11-15 10:18:26 -0600
|
228
7
|
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
229
8
|
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
230
|
-
Completed 200 OK in
|
231
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-
|
9
|
+
Completed 200 OK in 7ms
|
10
|
+
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-11-15 10:18:26 -0600
|
232
11
|
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
233
12
|
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
234
13
|
Rendering inline template
|
235
14
|
Rendered inline template (0.2ms)
|
236
|
-
Completed 200 OK in
|
237
|
-
Started GET "/" for 127.0.0.1 at 2018-
|
238
|
-
Processing by MultiSessionTestController#some_action as HTML
|
239
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
240
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.9ms)
|
241
|
-
Completed 200 OK in 8ms (Views: 6.6ms)
|
242
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-09 13:54:20 -0500
|
243
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
244
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
245
|
-
Completed 200 OK in 12ms
|
246
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-09 13:54:20 -0500
|
247
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
248
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
249
|
-
Rendering inline template
|
250
|
-
Rendered inline template (0.3ms)
|
251
|
-
Completed 200 OK in 13ms (Views: 0.9ms)
|
252
|
-
Started GET "/" for 127.0.0.1 at 2018-10-10 10:19:24 -0500
|
253
|
-
Processing by MultiSessionTestController#some_action as HTML
|
254
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
255
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (1.6ms)
|
256
|
-
Completed 200 OK in 12ms (Views: 10.0ms)
|
257
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-10 10:19:24 -0500
|
258
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
259
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
260
|
-
Completed 200 OK in 15ms
|
261
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-10 10:19:24 -0500
|
262
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
263
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
264
|
-
Rendering inline template
|
265
|
-
Rendered inline template (0.2ms)
|
266
|
-
Completed 200 OK in 14ms (Views: 0.6ms)
|
267
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:22:39 -0500
|
268
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
269
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
270
|
-
Completed 200 OK in 45ms
|
271
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:24:32 -0500
|
272
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
273
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
274
|
-
Completed 200 OK in 46ms
|
275
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:25:52 -0500
|
276
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
277
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
278
|
-
Completed 200 OK in 43ms
|
279
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:27:06 -0500
|
15
|
+
Completed 200 OK in 4ms (Views: 0.4ms)
|
16
|
+
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-11-15 10:18:26 -0600
|
280
17
|
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
281
18
|
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
282
|
-
Completed 200 OK in 42ms
|
283
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:27:19 -0500
|
284
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
285
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
286
|
-
Completed 200 OK in 47ms
|
287
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:28:10 -0500
|
288
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
289
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
290
|
-
Completed 200 OK in 52ms
|
291
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:28:38 -0500
|
292
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
293
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
294
|
-
Completed 200 OK in 48ms
|
295
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:28:52 -0500
|
296
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
297
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
298
|
-
Completed 200 OK in 48ms
|
299
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:29:07 -0500
|
300
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
301
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
302
|
-
Completed 200 OK in 48ms
|
303
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:29:44 -0500
|
304
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
305
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
306
|
-
Completed 200 OK in 52ms
|
307
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:31:10 -0500
|
308
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
309
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
310
|
-
Completed 200 OK in 52ms
|
311
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:33:40 -0500
|
312
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
313
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
314
|
-
Completed 200 OK in 46ms
|
315
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:34:39 -0500
|
316
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
317
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
318
|
-
Completed 200 OK in 50ms
|
319
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:34:52 -0500
|
320
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
321
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
322
|
-
Completed 200 OK in 50ms
|
323
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:35:06 -0500
|
324
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
325
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
326
|
-
Completed 200 OK in 50ms
|
327
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:35:13 -0500
|
328
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
329
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
330
|
-
Completed 200 OK in 50ms
|
331
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:35:37 -0500
|
332
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
333
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
334
|
-
Completed 200 OK in 52ms
|
335
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:37:11 -0500
|
336
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
337
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
338
|
-
Completed 200 OK in 47ms
|
339
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:37:30 -0500
|
340
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
341
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
342
|
-
Completed 200 OK in 47ms
|
343
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:38:00 -0500
|
344
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
345
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
346
|
-
Completed 200 OK in 60ms
|
347
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:38:56 -0500
|
348
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
349
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
350
|
-
Completed 200 OK in 47ms
|
351
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:39:13 -0500
|
352
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
353
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
354
|
-
Completed 200 OK in 58ms
|
355
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:39:40 -0500
|
356
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
357
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
358
|
-
Completed 200 OK in 64ms
|
359
|
-
Started GET "/" for 127.0.0.1 at 2018-10-10 10:40:33 -0500
|
360
|
-
Processing by MultiSessionTestController#some_action as HTML
|
361
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
362
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (1.0ms)
|
363
|
-
Completed 200 OK in 11ms (Views: 8.1ms)
|
364
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-10 10:40:33 -0500
|
365
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
366
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
367
|
-
Completed 200 OK in 12ms
|
368
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-10 10:40:33 -0500
|
369
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
370
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
371
|
-
Rendering inline template
|
372
|
-
Rendered inline template (0.3ms)
|
373
|
-
Completed 200 OK in 11ms (Views: 0.6ms)
|
374
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 10:40:33 -0500
|
375
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
376
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
377
|
-
Completed 200 OK in 39ms
|
378
|
-
Started GET "/" for 127.0.0.1 at 2018-10-10 11:07:52 -0500
|
379
|
-
Processing by MultiSessionTestController#some_action as HTML
|
380
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
381
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (1.1ms)
|
382
|
-
Completed 200 OK in 10ms (Views: 8.2ms)
|
383
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-10 11:07:52 -0500
|
384
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
385
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
386
|
-
Completed 200 OK in 18ms
|
387
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-10 11:07:52 -0500
|
388
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
389
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
390
|
-
Rendering inline template
|
391
|
-
Rendered inline template (0.2ms)
|
392
|
-
Completed 200 OK in 10ms (Views: 0.6ms)
|
393
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-10 11:07:52 -0500
|
394
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
395
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
396
|
-
Completed 200 OK in 37ms
|
397
|
-
Started GET "/" for 127.0.0.1 at 2018-10-11 10:28:33 -0500
|
398
|
-
Processing by MultiSessionTestController#some_action as HTML
|
399
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
400
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (1.0ms)
|
401
|
-
Completed 200 OK in 10ms (Views: 7.9ms)
|
402
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-11 10:28:33 -0500
|
403
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
404
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
405
19
|
Completed 200 OK in 15ms
|
406
|
-
Started GET "/
|
407
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
408
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
409
|
-
Rendering inline template
|
410
|
-
Rendered inline template (0.2ms)
|
411
|
-
Completed 200 OK in 10ms (Views: 0.6ms)
|
412
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-11 10:28:33 -0500
|
413
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
414
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
415
|
-
Completed 200 OK in 47ms
|
416
|
-
Started GET "/" for 127.0.0.1 at 2018-10-11 10:32:41 -0500
|
20
|
+
Started GET "/" for 127.0.0.1 at 2018-11-15 12:00:19 -0600
|
417
21
|
Processing by MultiSessionTestController#some_action as HTML
|
418
22
|
Rendering multi_session_test/some_action.html.erb within layouts/application
|
419
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (
|
420
|
-
Completed 200 OK in
|
421
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-
|
422
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
423
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
424
|
-
Completed 500 Internal Server Error in 8ms
|
425
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-11 10:32:41 -0500
|
426
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
427
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
428
|
-
Completed 500 Internal Server Error in 0ms
|
429
|
-
Started GET "/" for 127.0.0.1 at 2018-10-11 10:34:15 -0500
|
430
|
-
Processing by MultiSessionTestController#some_action as HTML
|
431
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
432
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (1.4ms)
|
433
|
-
Completed 200 OK in 11ms (Views: 9.5ms)
|
434
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-11 10:34:15 -0500
|
23
|
+
Rendered multi_session_test/some_action.html.erb within layouts/application (1.0ms)
|
24
|
+
Completed 200 OK in 8ms (Views: 6.4ms)
|
25
|
+
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-11-15 12:00:19 -0600
|
435
26
|
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
436
27
|
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
437
|
-
Completed 200 OK in
|
438
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-
|
28
|
+
Completed 200 OK in 8ms
|
29
|
+
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-11-15 12:00:19 -0600
|
439
30
|
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
440
31
|
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
441
32
|
Rendering inline template
|
442
33
|
Rendered inline template (0.2ms)
|
443
|
-
Completed 200 OK in
|
444
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-
|
34
|
+
Completed 200 OK in 5ms (Views: 0.5ms)
|
35
|
+
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-11-15 12:00:19 -0600
|
445
36
|
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
446
37
|
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
447
|
-
Completed 200 OK in 44ms
|
448
|
-
Started GET "/" for 127.0.0.1 at 2018-10-11 10:46:32 -0500
|
449
|
-
Processing by MultiSessionTestController#some_action as HTML
|
450
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
451
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (1.1ms)
|
452
|
-
Completed 200 OK in 9ms (Views: 6.9ms)
|
453
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-11 10:46:32 -0500
|
454
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
455
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
456
38
|
Completed 200 OK in 13ms
|
457
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-11 10:46:32 -0500
|
458
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
459
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
460
|
-
Rendering inline template
|
461
|
-
Rendered inline template (0.2ms)
|
462
|
-
Completed 200 OK in 19ms (Views: 0.6ms)
|
463
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-11 10:46:32 -0500
|
464
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
465
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
466
|
-
Completed 200 OK in 40ms
|
467
|
-
Started GET "/" for 127.0.0.1 at 2018-10-12 09:39:57 -0500
|
468
|
-
Processing by MultiSessionTestController#some_action as HTML
|
469
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
470
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (1.1ms)
|
471
|
-
Completed 200 OK in 11ms (Views: 8.3ms)
|
472
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-12 09:39:57 -0500
|
473
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
474
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
475
|
-
Completed 200 OK in 17ms
|
476
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-12 09:39:57 -0500
|
477
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
478
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
479
|
-
Rendering inline template
|
480
|
-
Rendered inline template (0.5ms)
|
481
|
-
Completed 200 OK in 12ms (Views: 0.9ms)
|
482
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-12 09:39:57 -0500
|
483
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
484
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
485
|
-
Completed 200 OK in 37ms
|
486
|
-
Started GET "/" for 127.0.0.1 at 2018-10-12 09:47:07 -0500
|
487
|
-
Processing by MultiSessionTestController#some_action as HTML
|
488
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
489
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.7ms)
|
490
|
-
Completed 200 OK in 8ms (Views: 6.1ms)
|
491
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-12 09:47:07 -0500
|
492
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
493
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
494
|
-
Completed 200 OK in 12ms
|
495
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-12 09:47:07 -0500
|
496
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
497
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
498
|
-
Rendering inline template
|
499
|
-
Rendered inline template (0.2ms)
|
500
|
-
Completed 200 OK in 11ms (Views: 0.8ms)
|
501
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-12 09:47:07 -0500
|
502
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
503
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
504
|
-
Completed 200 OK in 33ms
|
505
|
-
Started GET "/" for 127.0.0.1 at 2018-10-12 09:47:43 -0500
|
506
|
-
Processing by MultiSessionTestController#some_action as HTML
|
507
|
-
Rendering multi_session_test/some_action.html.erb within layouts/application
|
508
|
-
Rendered multi_session_test/some_action.html.erb within layouts/application (0.8ms)
|
509
|
-
Completed 200 OK in 8ms (Views: 6.1ms)
|
510
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha&session_values[bbbb]=bravo&session_values[cccc]=charlie&session_values[dddd]=delta&session_values[eeee]=echo" for 127.0.0.1 at 2018-10-12 09:47:43 -0500
|
511
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
512
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha", "bbbb"=>"bravo", "cccc"=>"charlie", "dddd"=>"delta", "eeee"=>"echo"}}
|
513
|
-
Completed 200 OK in 12ms
|
514
|
-
Started GET "/decrypt_multi_sessions?session_keys[]=aaaa&session_keys[]=bbbb&session_keys[]=cccc&session_keys[]=dddd&session_keys[]=eeee" for 127.0.0.1 at 2018-10-12 09:47:43 -0500
|
515
|
-
Processing by MultiSessionTestController#decrypt_multi_sessions as HTML
|
516
|
-
Parameters: {"session_keys"=>["aaaa", "bbbb", "cccc", "dddd", "eeee"]}
|
517
|
-
Rendering inline template
|
518
|
-
Rendered inline template (0.2ms)
|
519
|
-
Completed 200 OK in 10ms (Views: 0.6ms)
|
520
|
-
Started GET "/encrypt_multi_sessions?session_values[aaaa]=alpha" for 127.0.0.1 at 2018-10-12 09:47:43 -0500
|
521
|
-
Processing by MultiSessionTestController#encrypt_multi_sessions as HTML
|
522
|
-
Parameters: {"session_values"=>{"aaaa"=>"alpha"}}
|
523
|
-
Completed 200 OK in 33ms
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: multi_session
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sean Huber
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -99,13 +99,13 @@ files:
|
|
99
99
|
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
100
100
|
- spec/dummy/config/initializers/inflections.rb
|
101
101
|
- spec/dummy/config/initializers/mime_types.rb
|
102
|
+
- spec/dummy/config/initializers/multi_session.rb
|
102
103
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
103
104
|
- spec/dummy/config/locales/en.yml
|
104
105
|
- spec/dummy/config/master.key
|
105
106
|
- spec/dummy/config/puma.rb
|
106
107
|
- spec/dummy/config/routes.rb
|
107
108
|
- spec/dummy/config/spring.rb
|
108
|
-
- spec/dummy/log/development.log
|
109
109
|
- spec/dummy/log/test.log
|
110
110
|
- spec/dummy/public/404.html
|
111
111
|
- spec/dummy/public/422.html
|
@@ -135,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
135
135
|
version: '0'
|
136
136
|
requirements: []
|
137
137
|
rubyforge_project:
|
138
|
-
rubygems_version: 2.7.
|
138
|
+
rubygems_version: 2.7.8
|
139
139
|
signing_key:
|
140
140
|
specification_version: 4
|
141
141
|
summary: Creates multiple sessions for Rails
|
@@ -174,6 +174,7 @@ test_files:
|
|
174
174
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
175
175
|
- spec/dummy/config/initializers/cookies_serializer.rb
|
176
176
|
- spec/dummy/config/initializers/content_security_policy.rb
|
177
|
+
- spec/dummy/config/initializers/multi_session.rb
|
177
178
|
- spec/dummy/config/initializers/inflections.rb
|
178
179
|
- spec/dummy/config.ru
|
179
180
|
- spec/dummy/Rakefile
|
@@ -184,5 +185,4 @@ test_files:
|
|
184
185
|
- spec/dummy/public/404.html
|
185
186
|
- spec/dummy/public/apple-touch-icon-precomposed.png
|
186
187
|
- spec/dummy/log/test.log
|
187
|
-
- spec/dummy/log/development.log
|
188
188
|
- spec/requests/multi_session_spec.rb
|
File without changes
|