devise_masquerade 2.1.3 → 2.1.4
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/.tool-versions +1 -1
- data/Gemfile +6 -7
- data/Gemfile.lock +246 -177
- data/lib/devise_masquerade/version.rb +1 -1
- data/spec/dummy/config/routes.rb +1 -1
- data/spec/support/authentication.rb +1 -1
- metadata +6 -8
- data/spec/orm/active_record.rb +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e503e02f000ee8ed59f7905d50c151953eeeb35a6c562e7e0d33c92897c7b9a
|
4
|
+
data.tar.gz: 1356d2f3e0f2e0032630c7bd185b1fc218fe76f5b2f64c0e34f5bb844dd4cae5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 937358bb069bd4d537b47176fe64d7f5ca4a738f13c5c1e204c747045b5e82d84c80147408b2156003f6e4cca9152cd784dca98b7af86917732be91a19e10669
|
7
|
+
data.tar.gz: 1d44c36ca63eea2720e065fa9b37a85395ca410bc3fbe152d1b72e414f89f059f52ef6c07ac95a01b82a9745ca9f9a15c4b809c4976aee759f8f8d973a26283a
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby 2.
|
1
|
+
ruby 3.2.2
|
data/Gemfile
CHANGED
@@ -5,9 +5,9 @@ gemspec
|
|
5
5
|
|
6
6
|
group :test do
|
7
7
|
gem 'activerecord', '>= 5.2'
|
8
|
-
gem 'actionmailer', '>=
|
8
|
+
gem 'actionmailer', '>= 7.0.8.7'
|
9
9
|
gem 'bson_ext', '~> 1.3'
|
10
|
-
gem 'sqlite3'
|
10
|
+
gem 'sqlite3'
|
11
11
|
|
12
12
|
gem 'test-unit'
|
13
13
|
|
@@ -28,14 +28,13 @@ group :test do
|
|
28
28
|
|
29
29
|
gem 'shoulda'
|
30
30
|
gem 'rb-fsevent'
|
31
|
-
gem 'factory_bot_rails'
|
31
|
+
gem 'factory_bot_rails', '>= 5.2.0'
|
32
32
|
gem 'database_cleaner', '< 1.1.0'
|
33
33
|
gem 'cucumber'
|
34
|
-
gem '
|
35
|
-
gem '
|
34
|
+
gem 'capybara', '>= 3.38.0'
|
35
|
+
gem 'cucumber-rails', '>= 2.1.0'
|
36
36
|
gem 'selenium-webdriver'
|
37
37
|
gem 'chromedriver-helper'
|
38
38
|
gem 'launchy'
|
39
|
-
|
40
|
-
gem "nokogiri", ">= 1.10.8"
|
39
|
+
gem 'nokogiri'
|
41
40
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,58 +1,58 @@
|
|
1
1
|
GIT
|
2
2
|
remote: https://github.com/rspec/rspec-core.git
|
3
|
-
revision:
|
3
|
+
revision: aec5f49485d97908183dbe790a7fefb8baaa8091
|
4
4
|
specs:
|
5
|
-
rspec-core (3.
|
6
|
-
rspec-support (= 3.
|
5
|
+
rspec-core (3.14.0.pre)
|
6
|
+
rspec-support (= 3.14.0.pre)
|
7
7
|
|
8
8
|
GIT
|
9
9
|
remote: https://github.com/rspec/rspec-expectations.git
|
10
|
-
revision:
|
10
|
+
revision: ba31727e856de42abb5a2e6566855f0831e1a619
|
11
11
|
specs:
|
12
|
-
rspec-expectations (3.
|
12
|
+
rspec-expectations (3.14.0.pre)
|
13
13
|
diff-lcs (>= 1.2.0, < 2.0)
|
14
|
-
rspec-support (= 3.
|
14
|
+
rspec-support (= 3.14.0.pre)
|
15
15
|
|
16
16
|
GIT
|
17
17
|
remote: https://github.com/rspec/rspec-mocks.git
|
18
|
-
revision:
|
18
|
+
revision: 3caa9ac841e146d618421f870077c0ad684e6cad
|
19
19
|
specs:
|
20
|
-
rspec-mocks (3.
|
20
|
+
rspec-mocks (3.14.0.pre)
|
21
21
|
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
-
rspec-support (= 3.
|
22
|
+
rspec-support (= 3.14.0.pre)
|
23
23
|
|
24
24
|
GIT
|
25
25
|
remote: https://github.com/rspec/rspec-rails.git
|
26
|
-
revision:
|
26
|
+
revision: 94c4be4cafd81d155300265692cf7378cbea124a
|
27
27
|
specs:
|
28
|
-
rspec-rails (
|
29
|
-
actionpack (>=
|
30
|
-
activesupport (>=
|
31
|
-
railties (>=
|
32
|
-
rspec-core (
|
33
|
-
rspec-expectations (
|
34
|
-
rspec-mocks (
|
35
|
-
rspec-support (
|
28
|
+
rspec-rails (7.2.0.pre)
|
29
|
+
actionpack (>= 7.0)
|
30
|
+
activesupport (>= 7.0)
|
31
|
+
railties (>= 7.0)
|
32
|
+
rspec-core (~> 3.13)
|
33
|
+
rspec-expectations (~> 3.13)
|
34
|
+
rspec-mocks (~> 3.13)
|
35
|
+
rspec-support (~> 3.13)
|
36
36
|
|
37
37
|
GIT
|
38
38
|
remote: https://github.com/rspec/rspec-support.git
|
39
|
-
revision:
|
39
|
+
revision: 393117fb4c8874918044d9ed5d3ff3c482fd41ec
|
40
40
|
specs:
|
41
|
-
rspec-support (3.
|
41
|
+
rspec-support (3.14.0.pre)
|
42
42
|
|
43
43
|
GIT
|
44
44
|
remote: https://github.com/rspec/rspec.git
|
45
|
-
revision:
|
45
|
+
revision: d064fd0e9f00af834dfcfbe55e74b066a76e98e6
|
46
46
|
specs:
|
47
|
-
rspec (3.
|
48
|
-
rspec-core (= 3.
|
49
|
-
rspec-expectations (= 3.
|
50
|
-
rspec-mocks (= 3.
|
47
|
+
rspec (3.14.0.pre)
|
48
|
+
rspec-core (= 3.14.0.pre)
|
49
|
+
rspec-expectations (= 3.14.0.pre)
|
50
|
+
rspec-mocks (= 3.14.0.pre)
|
51
51
|
|
52
52
|
PATH
|
53
53
|
remote: .
|
54
54
|
specs:
|
55
|
-
devise_masquerade (2.1.
|
55
|
+
devise_masquerade (2.1.4)
|
56
56
|
devise (>= 4.7.0)
|
57
57
|
globalid (>= 0.3.6)
|
58
58
|
railties (>= 5.2.0)
|
@@ -60,238 +60,307 @@ PATH
|
|
60
60
|
GEM
|
61
61
|
remote: https://rubygems.org/
|
62
62
|
specs:
|
63
|
-
actionmailer (
|
64
|
-
actionpack (=
|
65
|
-
actionview (=
|
66
|
-
activejob (=
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
63
|
+
actionmailer (8.0.2)
|
64
|
+
actionpack (= 8.0.2)
|
65
|
+
actionview (= 8.0.2)
|
66
|
+
activejob (= 8.0.2)
|
67
|
+
activesupport (= 8.0.2)
|
68
|
+
mail (>= 2.8.0)
|
69
|
+
rails-dom-testing (~> 2.2)
|
70
|
+
actionpack (8.0.2)
|
71
|
+
actionview (= 8.0.2)
|
72
|
+
activesupport (= 8.0.2)
|
73
|
+
nokogiri (>= 1.8.5)
|
74
|
+
rack (>= 2.2.4)
|
75
|
+
rack-session (>= 1.0.1)
|
73
76
|
rack-test (>= 0.6.3)
|
74
|
-
rails-dom-testing (~> 2.
|
75
|
-
rails-html-sanitizer (~> 1.
|
76
|
-
|
77
|
-
|
77
|
+
rails-dom-testing (~> 2.2)
|
78
|
+
rails-html-sanitizer (~> 1.6)
|
79
|
+
useragent (~> 0.16)
|
80
|
+
actionview (8.0.2)
|
81
|
+
activesupport (= 8.0.2)
|
78
82
|
builder (~> 3.1)
|
79
|
-
erubi (~> 1.
|
80
|
-
rails-dom-testing (~> 2.
|
81
|
-
rails-html-sanitizer (~> 1.
|
82
|
-
activejob (
|
83
|
-
activesupport (=
|
83
|
+
erubi (~> 1.11)
|
84
|
+
rails-dom-testing (~> 2.2)
|
85
|
+
rails-html-sanitizer (~> 1.6)
|
86
|
+
activejob (8.0.2)
|
87
|
+
activesupport (= 8.0.2)
|
84
88
|
globalid (>= 0.3.6)
|
85
|
-
activemodel (
|
86
|
-
activesupport (=
|
87
|
-
activerecord (
|
88
|
-
activemodel (=
|
89
|
-
activesupport (=
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
89
|
+
activemodel (8.0.2)
|
90
|
+
activesupport (= 8.0.2)
|
91
|
+
activerecord (8.0.2)
|
92
|
+
activemodel (= 8.0.2)
|
93
|
+
activesupport (= 8.0.2)
|
94
|
+
timeout (>= 0.4.0)
|
95
|
+
activesupport (8.0.2)
|
96
|
+
base64
|
97
|
+
benchmark (>= 0.3)
|
98
|
+
bigdecimal
|
99
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
100
|
+
connection_pool (>= 2.2.5)
|
101
|
+
drb
|
102
|
+
i18n (>= 1.6, < 2)
|
103
|
+
logger (>= 1.4.2)
|
104
|
+
minitest (>= 5.1)
|
105
|
+
securerandom (>= 0.3)
|
106
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
107
|
+
uri (>= 0.13.1)
|
108
|
+
addressable (2.8.7)
|
109
|
+
public_suffix (>= 2.0.2, < 7.0)
|
98
110
|
archive-zip (0.12.0)
|
99
111
|
io-like (~> 0.3.0)
|
100
|
-
|
101
|
-
bcrypt (3.1.
|
112
|
+
base64 (0.2.0)
|
113
|
+
bcrypt (3.1.20)
|
114
|
+
benchmark (0.4.0)
|
115
|
+
bigdecimal (3.1.9)
|
102
116
|
bson (1.12.5)
|
103
117
|
bson_ext (1.12.5)
|
104
118
|
bson (~> 1.12.5)
|
105
|
-
builder (3.
|
106
|
-
byebug (11.
|
107
|
-
capybara (3.
|
119
|
+
builder (3.3.0)
|
120
|
+
byebug (11.1.3)
|
121
|
+
capybara (3.40.0)
|
108
122
|
addressable
|
109
123
|
matrix
|
110
124
|
mini_mime (>= 0.1.3)
|
111
|
-
nokogiri (~> 1.
|
125
|
+
nokogiri (~> 1.11)
|
112
126
|
rack (>= 1.6.0)
|
113
127
|
rack-test (>= 0.6.3)
|
114
128
|
regexp_parser (>= 1.5, < 3.0)
|
115
129
|
xpath (~> 3.2)
|
116
|
-
childprocess (
|
130
|
+
childprocess (5.1.0)
|
131
|
+
logger (~> 1.5)
|
117
132
|
chromedriver-helper (2.1.1)
|
118
133
|
archive-zip (~> 0.10)
|
119
134
|
nokogiri (~> 1.8)
|
120
135
|
coderay (1.1.3)
|
121
|
-
concurrent-ruby (1.
|
136
|
+
concurrent-ruby (1.3.5)
|
137
|
+
connection_pool (2.5.0)
|
122
138
|
crass (1.0.6)
|
123
|
-
cucumber (
|
124
|
-
builder (
|
125
|
-
cucumber-
|
126
|
-
cucumber-
|
127
|
-
cucumber-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
cucumber-
|
137
|
-
|
138
|
-
|
139
|
-
cucumber (
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
cucumber-
|
139
|
+
cucumber (9.2.1)
|
140
|
+
builder (~> 3.2)
|
141
|
+
cucumber-ci-environment (> 9, < 11)
|
142
|
+
cucumber-core (> 13, < 14)
|
143
|
+
cucumber-cucumber-expressions (~> 17.0)
|
144
|
+
cucumber-gherkin (> 24, < 28)
|
145
|
+
cucumber-html-formatter (> 20.3, < 22)
|
146
|
+
cucumber-messages (> 19, < 25)
|
147
|
+
diff-lcs (~> 1.5)
|
148
|
+
mini_mime (~> 1.1)
|
149
|
+
multi_test (~> 1.1)
|
150
|
+
sys-uname (~> 1.2)
|
151
|
+
cucumber-ci-environment (10.0.1)
|
152
|
+
cucumber-core (13.0.3)
|
153
|
+
cucumber-gherkin (>= 27, < 28)
|
154
|
+
cucumber-messages (>= 20, < 23)
|
155
|
+
cucumber-tag-expressions (> 5, < 7)
|
156
|
+
cucumber-cucumber-expressions (17.1.0)
|
157
|
+
bigdecimal
|
158
|
+
cucumber-gherkin (27.0.0)
|
159
|
+
cucumber-messages (>= 19.1.4, < 23)
|
160
|
+
cucumber-html-formatter (21.9.0)
|
161
|
+
cucumber-messages (> 19, < 28)
|
162
|
+
cucumber-messages (22.0.0)
|
163
|
+
cucumber-rails (3.1.1)
|
164
|
+
capybara (>= 3.11, < 4)
|
165
|
+
cucumber (>= 5, < 10)
|
166
|
+
railties (>= 5.2, < 9)
|
167
|
+
cucumber-tag-expressions (6.1.2)
|
145
168
|
database_cleaner (1.0.1)
|
146
|
-
|
169
|
+
date (3.4.1)
|
170
|
+
devise (4.9.4)
|
147
171
|
bcrypt (~> 3.0)
|
148
172
|
orm_adapter (~> 0.1)
|
149
173
|
railties (>= 4.1.0)
|
150
174
|
responders
|
151
175
|
warden (~> 1.2.3)
|
152
|
-
diff-lcs (1.
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
globalid (1.
|
163
|
-
activesupport (>=
|
164
|
-
guard (2.
|
176
|
+
diff-lcs (1.6.0)
|
177
|
+
drb (2.2.1)
|
178
|
+
erubi (1.13.1)
|
179
|
+
factory_bot (6.5.1)
|
180
|
+
activesupport (>= 6.1.0)
|
181
|
+
factory_bot_rails (6.4.4)
|
182
|
+
factory_bot (~> 6.5)
|
183
|
+
railties (>= 5.0.0)
|
184
|
+
ffi (1.17.1-arm64-darwin)
|
185
|
+
formatador (1.1.0)
|
186
|
+
globalid (1.2.1)
|
187
|
+
activesupport (>= 6.1)
|
188
|
+
guard (2.19.1)
|
165
189
|
formatador (>= 0.2.4)
|
166
190
|
listen (>= 2.7, < 4.0)
|
191
|
+
logger (~> 1.6)
|
167
192
|
lumberjack (>= 1.0.12, < 2.0)
|
168
193
|
nenv (~> 0.1)
|
169
194
|
notiffany (~> 0.0)
|
170
|
-
|
195
|
+
ostruct (~> 0.6)
|
196
|
+
pry (>= 0.13.0)
|
171
197
|
shellany (~> 0.0)
|
172
198
|
thor (>= 0.18.1)
|
173
|
-
guard-bundler (3.0.
|
199
|
+
guard-bundler (3.0.1)
|
174
200
|
bundler (>= 2.1, < 3)
|
175
201
|
guard (~> 2.2)
|
176
202
|
guard-compat (~> 1.1)
|
177
203
|
guard-compat (1.2.1)
|
178
|
-
guard-cucumber (
|
179
|
-
cucumber (>=
|
180
|
-
|
181
|
-
nenv (~> 0.1)
|
204
|
+
guard-cucumber (3.0.0)
|
205
|
+
cucumber (>= 3.1)
|
206
|
+
nenv (>= 0.1)
|
182
207
|
guard-rspec (4.7.3)
|
183
208
|
guard (~> 2.1)
|
184
209
|
guard-compat (~> 1.1)
|
185
210
|
rspec (>= 2.99.0, < 4.0)
|
186
|
-
i18n (1.
|
211
|
+
i18n (1.14.7)
|
187
212
|
concurrent-ruby (~> 1.0)
|
213
|
+
io-console (0.8.0)
|
188
214
|
io-like (0.3.1)
|
189
|
-
|
190
|
-
|
191
|
-
|
215
|
+
irb (1.15.1)
|
216
|
+
pp (>= 0.6.0)
|
217
|
+
rdoc (>= 4.0.0)
|
218
|
+
reline (>= 0.4.2)
|
219
|
+
launchy (3.1.1)
|
220
|
+
addressable (~> 2.8)
|
221
|
+
childprocess (~> 5.0)
|
222
|
+
logger (~> 1.6)
|
223
|
+
listen (3.9.0)
|
192
224
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
193
225
|
rb-inotify (~> 0.9, >= 0.9.10)
|
194
|
-
|
226
|
+
logger (1.6.6)
|
227
|
+
loofah (2.24.0)
|
195
228
|
crass (~> 1.0.2)
|
196
|
-
nokogiri (>= 1.
|
197
|
-
lumberjack (1.
|
198
|
-
mail (2.
|
229
|
+
nokogiri (>= 1.12.0)
|
230
|
+
lumberjack (1.2.10)
|
231
|
+
mail (2.8.1)
|
199
232
|
mini_mime (>= 0.1.1)
|
233
|
+
net-imap
|
234
|
+
net-pop
|
235
|
+
net-smtp
|
200
236
|
matrix (0.4.2)
|
201
|
-
method_source (
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
mini_mime (1.0.2)
|
206
|
-
mini_portile2 (2.8.1)
|
207
|
-
minitest (5.17.0)
|
208
|
-
multi_json (1.14.1)
|
209
|
-
multi_test (0.1.2)
|
237
|
+
method_source (1.1.0)
|
238
|
+
mini_mime (1.1.5)
|
239
|
+
minitest (5.25.5)
|
240
|
+
multi_test (1.1.0)
|
210
241
|
nenv (0.3.0)
|
211
|
-
|
212
|
-
|
242
|
+
net-imap (0.5.6)
|
243
|
+
date
|
244
|
+
net-protocol
|
245
|
+
net-pop (0.1.2)
|
246
|
+
net-protocol
|
247
|
+
net-protocol (0.2.2)
|
248
|
+
timeout
|
249
|
+
net-smtp (0.5.1)
|
250
|
+
net-protocol
|
251
|
+
nokogiri (1.18.5-arm64-darwin)
|
213
252
|
racc (~> 1.4)
|
214
253
|
notiffany (0.1.3)
|
215
254
|
nenv (~> 0.1)
|
216
255
|
shellany (~> 0.0)
|
217
256
|
orm_adapter (0.5.0)
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
257
|
+
ostruct (0.6.1)
|
258
|
+
power_assert (2.0.5)
|
259
|
+
pp (0.6.2)
|
260
|
+
prettyprint
|
261
|
+
prettyprint (0.2.0)
|
262
|
+
pry (0.14.2)
|
263
|
+
coderay (~> 1.1)
|
264
|
+
method_source (~> 1.0)
|
265
|
+
pry-byebug (3.10.1)
|
223
266
|
byebug (~> 11.0)
|
224
|
-
pry (
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
267
|
+
pry (>= 0.13, < 0.15)
|
268
|
+
psych (5.2.3)
|
269
|
+
date
|
270
|
+
stringio
|
271
|
+
public_suffix (6.0.1)
|
272
|
+
racc (1.8.1)
|
273
|
+
rack (3.1.12)
|
274
|
+
rack-session (2.1.0)
|
275
|
+
base64 (>= 0.1.0)
|
276
|
+
rack (>= 3.0.0)
|
277
|
+
rack-test (2.2.0)
|
229
278
|
rack (>= 1.3)
|
230
|
-
|
231
|
-
|
279
|
+
rackup (2.2.1)
|
280
|
+
rack (>= 3)
|
281
|
+
rails-dom-testing (2.2.0)
|
282
|
+
activesupport (>= 5.0.0)
|
283
|
+
minitest
|
232
284
|
nokogiri (>= 1.6)
|
233
|
-
rails-html-sanitizer (1.
|
234
|
-
loofah (~> 2.
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
285
|
+
rails-html-sanitizer (1.6.2)
|
286
|
+
loofah (~> 2.21)
|
287
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
288
|
+
railties (8.0.2)
|
289
|
+
actionpack (= 8.0.2)
|
290
|
+
activesupport (= 8.0.2)
|
291
|
+
irb (~> 1.13)
|
292
|
+
rackup (>= 1.0.0)
|
293
|
+
rake (>= 12.2)
|
294
|
+
thor (~> 1.0, >= 1.2.2)
|
295
|
+
zeitwerk (~> 2.6)
|
296
|
+
rake (13.2.1)
|
297
|
+
rb-fsevent (0.11.2)
|
298
|
+
rb-inotify (0.11.1)
|
244
299
|
ffi (~> 1.0)
|
245
|
-
|
300
|
+
rdoc (6.12.0)
|
301
|
+
psych (>= 4.0.0)
|
302
|
+
regexp_parser (2.10.0)
|
303
|
+
reline (0.6.0)
|
304
|
+
io-console (~> 0.5)
|
246
305
|
responders (3.1.1)
|
247
306
|
actionpack (>= 5.2)
|
248
307
|
railties (>= 5.2)
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
308
|
+
rexml (3.4.1)
|
309
|
+
rubyzip (2.4.1)
|
310
|
+
securerandom (0.4.1)
|
311
|
+
selenium-webdriver (4.29.1)
|
312
|
+
base64 (~> 0.2)
|
313
|
+
logger (~> 1.4)
|
314
|
+
rexml (~> 3.2, >= 3.2.5)
|
315
|
+
rubyzip (>= 1.2.2, < 3.0)
|
316
|
+
websocket (~> 1.0)
|
253
317
|
shellany (0.0.1)
|
254
|
-
shoulda (
|
255
|
-
shoulda-context (~>
|
256
|
-
shoulda-matchers (~>
|
257
|
-
shoulda-context (
|
258
|
-
shoulda-matchers (
|
259
|
-
activesupport (>= 4.
|
260
|
-
sqlite3 (
|
261
|
-
|
262
|
-
|
318
|
+
shoulda (4.0.0)
|
319
|
+
shoulda-context (~> 2.0)
|
320
|
+
shoulda-matchers (~> 4.0)
|
321
|
+
shoulda-context (2.0.0)
|
322
|
+
shoulda-matchers (4.5.1)
|
323
|
+
activesupport (>= 4.2.0)
|
324
|
+
sqlite3 (2.6.0-arm64-darwin)
|
325
|
+
stringio (3.1.5)
|
326
|
+
sys-uname (1.3.1)
|
327
|
+
ffi (~> 1.1)
|
328
|
+
test-unit (3.6.7)
|
263
329
|
power_assert
|
264
|
-
thor (
|
265
|
-
|
266
|
-
tzinfo (
|
267
|
-
|
330
|
+
thor (1.3.2)
|
331
|
+
timeout (0.4.3)
|
332
|
+
tzinfo (2.0.6)
|
333
|
+
concurrent-ruby (~> 1.0)
|
334
|
+
uri (1.0.3)
|
335
|
+
useragent (0.16.11)
|
268
336
|
warden (1.2.9)
|
269
337
|
rack (>= 2.0.9)
|
338
|
+
websocket (1.2.11)
|
270
339
|
xpath (3.2.0)
|
271
340
|
nokogiri (~> 1.8)
|
272
|
-
zeitwerk (2.
|
341
|
+
zeitwerk (2.7.2)
|
273
342
|
|
274
343
|
PLATFORMS
|
275
|
-
|
344
|
+
arm64-darwin-21
|
276
345
|
|
277
346
|
DEPENDENCIES
|
278
|
-
actionmailer (>=
|
347
|
+
actionmailer (>= 7.0.8.7)
|
279
348
|
activerecord (>= 5.2)
|
280
349
|
bson_ext (~> 1.3)
|
281
350
|
bundler (>= 2.0.0)
|
282
|
-
capybara
|
351
|
+
capybara (>= 3.38.0)
|
283
352
|
chromedriver-helper
|
284
353
|
cucumber
|
285
|
-
cucumber-rails
|
354
|
+
cucumber-rails (>= 2.1.0)
|
286
355
|
database_cleaner (< 1.1.0)
|
287
356
|
devise_masquerade!
|
288
|
-
factory_bot_rails
|
357
|
+
factory_bot_rails (>= 5.2.0)
|
289
358
|
guard
|
290
359
|
guard-bundler
|
291
360
|
guard-cucumber
|
292
361
|
guard-rspec (~> 4.7)
|
293
362
|
launchy
|
294
|
-
nokogiri
|
363
|
+
nokogiri
|
295
364
|
pry
|
296
365
|
pry-byebug
|
297
366
|
rb-fsevent
|
@@ -303,8 +372,8 @@ DEPENDENCIES
|
|
303
372
|
rspec-support!
|
304
373
|
selenium-webdriver
|
305
374
|
shoulda
|
306
|
-
sqlite3
|
375
|
+
sqlite3
|
307
376
|
test-unit
|
308
377
|
|
309
378
|
BUNDLED WITH
|
310
|
-
2.
|
379
|
+
2.4.10
|
data/spec/dummy/config/routes.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Dummy::Application.routes.draw do
|
2
2
|
devise_for :users, controllers: { masquerades: 'users/masquerades' }
|
3
|
-
devise_for :admin_users, class_name: Admin::User.name
|
3
|
+
devise_for :admin_users, class_name: Admin::User.name, module: :admin
|
4
4
|
devise_for :students, class_name: Student.name
|
5
5
|
|
6
6
|
root to: 'dashboard#index'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise_masquerade
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexandr Korsak
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -159,7 +159,6 @@ files:
|
|
159
159
|
- spec/dummy/public/.empty
|
160
160
|
- spec/dummy/script/rails
|
161
161
|
- spec/models/user_spec.rb
|
162
|
-
- spec/orm/active_record.rb
|
163
162
|
- spec/spec_helper.rb
|
164
163
|
- spec/support/authentication.rb
|
165
164
|
- spec/support/factories.rb
|
@@ -167,7 +166,7 @@ homepage: http://github.com/oivoodoo/devise_masquerade
|
|
167
166
|
licenses:
|
168
167
|
- MIT
|
169
168
|
metadata: {}
|
170
|
-
post_install_message:
|
169
|
+
post_install_message:
|
171
170
|
rdoc_options: []
|
172
171
|
require_paths:
|
173
172
|
- lib
|
@@ -182,8 +181,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
182
181
|
- !ruby/object:Gem::Version
|
183
182
|
version: '0'
|
184
183
|
requirements: []
|
185
|
-
rubygems_version: 3.
|
186
|
-
signing_key:
|
184
|
+
rubygems_version: 3.4.10
|
185
|
+
signing_key:
|
187
186
|
specification_version: 4
|
188
187
|
summary: use for login as functionallity on your admin users pages
|
189
188
|
test_files:
|
@@ -245,7 +244,6 @@ test_files:
|
|
245
244
|
- spec/dummy/public/.empty
|
246
245
|
- spec/dummy/script/rails
|
247
246
|
- spec/models/user_spec.rb
|
248
|
-
- spec/orm/active_record.rb
|
249
247
|
- spec/spec_helper.rb
|
250
248
|
- spec/support/authentication.rb
|
251
249
|
- spec/support/factories.rb
|
data/spec/orm/active_record.rb
DELETED