devise-secure_password 1.0.5 → 2.0.0
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 +5 -5
- data/Changelog.md +43 -4
- data/Dockerfile +1 -1
- data/Dockerfile.prev +3 -3
- data/Gemfile +1 -0
- data/Gemfile.lock +215 -205
- data/README.md +33 -10
- data/app/controllers/devise/passwords_with_policy_controller.rb +55 -14
- data/app/views/devise/passwords_with_policy/edit.html.erb +5 -1
- data/config/locales/en.yml +50 -0
- data/devise-secure_password.gemspec +22 -23
- data/gemfiles/rails_6_0.gemfile +57 -0
- data/gemfiles/rails_6_0.gemfile.lock +347 -0
- data/gemfiles/rails_6_1.gemfile +57 -0
- data/gemfiles/rails_6_1.gemfile.lock +352 -0
- data/lib/devise/secure_password.rb +4 -9
- data/lib/devise/secure_password/controllers/devise_helpers.rb +4 -50
- data/lib/devise/secure_password/controllers/helpers.rb +58 -0
- data/lib/devise/secure_password/grammar.rb +13 -0
- data/lib/devise/secure_password/models/password_disallows_frequent_changes.rb +4 -2
- data/lib/devise/secure_password/models/password_disallows_frequent_reuse.rb +1 -0
- data/lib/devise/secure_password/models/password_has_required_content.rb +53 -15
- data/lib/devise/secure_password/models/password_requires_regular_updates.rb +1 -3
- data/lib/devise/secure_password/version.rb +1 -1
- data/lib/support/string/character_counter.rb +3 -1
- data/pkg/devise-secure_password-2.0.0.gem +0 -0
- metadata +66 -168
- data/coverage/assets/0.10.2/application.css +0 -799
- data/coverage/assets/0.10.2/application.js +0 -1707
- data/coverage/assets/0.10.2/colorbox/border.png +0 -0
- data/coverage/assets/0.10.2/colorbox/controls.png +0 -0
- data/coverage/assets/0.10.2/colorbox/loading.gif +0 -0
- data/coverage/assets/0.10.2/colorbox/loading_background.png +0 -0
- data/coverage/assets/0.10.2/favicon_green.png +0 -0
- data/coverage/assets/0.10.2/favicon_red.png +0 -0
- data/coverage/assets/0.10.2/favicon_yellow.png +0 -0
- data/coverage/assets/0.10.2/loading.gif +0 -0
- data/coverage/assets/0.10.2/magnify.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/coverage/assets/0.10.2/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/coverage/index.html +0 -4115
- data/devise-secure_password-1.0.0.gem +0 -0
- data/gemfiles/rails-5_0_6.gemfile +0 -17
- data/gemfiles/rails-5_0_6.gemfile.lock +0 -286
- data/gemfiles/rails-5_1_4.gemfile +0 -16
- data/gemfiles/rails-5_1_4.gemfile.lock +0 -282
- data/lib/devise/secure_password/controllers/active_helpers.rb +0 -45
- data/lib/devise/secure_password/hooks/password_requires_regular_updates.rb +0 -5
- data/pkg/devise-secure_password-1.0.3.gem +0 -0
- data/pkg/devise-secure_password-1.0.4.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: be4167e6f4c2efee915bc84b57323df20067eee0b4f80fd6bfbfcef372ae70d3
|
4
|
+
data.tar.gz: e0e0d78b7bd7ef2ab1c326f45e3d4b5df51d91ef68d8ec9d0632b435b9fd102e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83aea3e496702715f20c3e3dbd8804f67140878f32c1d9d196981dd95b77c801e68d705198534e7d20def9a433c3ef5e47bdaeb5a5d1613df0c8283d1d63c59f
|
7
|
+
data.tar.gz: 055a7210bcb781c382b0d7f8cff18695a592cd0f97e7624f5b9b661b46aedb85071623934a98787b5e5036c84425ca47f5434bdb453bf79af1f0554d0eab3476
|
data/Changelog.md
CHANGED
@@ -1,5 +1,44 @@
|
|
1
1
|
# Changelog: devise-secure_password
|
2
2
|
|
3
|
+
## 1.1.0 / 2018-08-08
|
4
|
+
|
5
|
+
With this release, the __devise-secure_password__ gem drops official support for Rails < 5.1. Supported versions are now
|
6
|
+
Rails 5.2 (current release) and Rails 5.1 (last release).
|
7
|
+
|
8
|
+
* Update README for Rails versions tested (5.2, 5.1).
|
9
|
+
* Update circleci config for Ruby and Rails versions.
|
10
|
+
* Update default dev build to Rails 5.2.
|
11
|
+
* Add test support for Rails 5.2.
|
12
|
+
* Remove test support for Rails 5.0.
|
13
|
+
* Update Dockerfile.prev ruby to 2.4.4.
|
14
|
+
* Update Dockerfile ruby to 2.5.1.
|
15
|
+
* Sort rake targets task list output.
|
16
|
+
* Add Codecov.io for coverage tracking
|
17
|
+
|
18
|
+
## 1.0.8 / 2018-06-15
|
19
|
+
|
20
|
+
* Update README for ruby versions tested (2.5.1, 2.4.4).
|
21
|
+
* Update README for target reconfig instructions.
|
22
|
+
* Update README for test screenshot generation.
|
23
|
+
* Fix grammar for error messages.
|
24
|
+
* Fix empty new passwords skipping validation.
|
25
|
+
* Add tests for invalid empty and current passwords.
|
26
|
+
* Add total string length counting to character_counter.
|
27
|
+
* Add password confirmation equality validator.
|
28
|
+
* Add length validations to password fields.
|
29
|
+
* Add update_action hidden field to forced password change form.
|
30
|
+
* Refactor passwords_with_policy controller.
|
31
|
+
|
32
|
+
## 1.0.7 / 2018-05-25
|
33
|
+
|
34
|
+
* Fix specs to use appropriate Rails version
|
35
|
+
* Update configuration to not include patch version for Rails
|
36
|
+
* Manage expiration in session to remove incompatability with authentication extensions
|
37
|
+
|
38
|
+
## 1.0.6 / 2018-05-04
|
39
|
+
|
40
|
+
* Fix scoping for previous passwords returned through associations.
|
41
|
+
|
3
42
|
## 1.0.5 / 2018-04-30
|
4
43
|
|
5
44
|
* Update rails-app-5_1_4 config for SQLite3Adapter changes.
|
@@ -31,13 +70,13 @@
|
|
31
70
|
## v1.0.0 / 2018-03-07
|
32
71
|
|
33
72
|
* Update license.
|
34
|
-
*
|
73
|
+
* Refactor to simplify install and test commands.
|
35
74
|
|
36
75
|
## v0.9.4 / 2018-01-24
|
37
76
|
|
38
|
-
*
|
39
|
-
*
|
40
|
-
*
|
77
|
+
* Fix typos in README.
|
78
|
+
* Update circleci badge token.
|
79
|
+
* Rename modules according to convention for Rails concerns.
|
41
80
|
* Implement code coverage.
|
42
81
|
* Support multiple rails versions for testing.
|
43
82
|
* Rename password_regular_update_enforcement_controller to dppe_passwords_controller.
|
data/Dockerfile
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
# NOTE: The order in which you run 'bundle install' in spec/rails and then in
|
14
14
|
# the top directory is important.
|
15
15
|
#
|
16
|
-
FROM circleci/ruby:2.5.
|
16
|
+
FROM circleci/ruby:2.5.1-browsers
|
17
17
|
LABEL maintainer="Mark Eissler <mark.eissler@valimail.com>"
|
18
18
|
|
19
19
|
ENV BUILD_HOME='/secure-password-gem'
|
data/Dockerfile.prev
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
#
|
2
2
|
# Dockerfile for devise-secure_password
|
3
3
|
#
|
4
|
-
# prompt> docker build -t secure-password-dev .
|
5
|
-
# prompt> docker run -it secure-password-dev /bin/bash
|
4
|
+
# prompt> docker build -f Dockerfile.prev -t secure-password-dev-prev .
|
5
|
+
# prompt> docker run -it secure-password-dev-prev /bin/bash
|
6
6
|
# prompt> pushd . && cd spec/rails-app-X_y_z
|
7
7
|
# prompt> gem install bundler && RAILS_TARGET=X.y.z bundle install --jobs 20 --retry 5
|
8
8
|
# prompt> RAILS_ENV='test' bundle exec rake db:migrate
|
@@ -13,7 +13,7 @@
|
|
13
13
|
# NOTE: The order in which you run 'bundle install' in spec/rails and then in
|
14
14
|
# the top directory is important.
|
15
15
|
#
|
16
|
-
FROM circleci/ruby:2.4.
|
16
|
+
FROM circleci/ruby:2.4.4-browsers
|
17
17
|
LABEL maintainer="Mark Eissler <mark.eissler@valimail.com>"
|
18
18
|
|
19
19
|
ENV BUILD_HOME='/secure-password-gem'
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -9,280 +9,290 @@ GIT
|
|
9
9
|
PATH
|
10
10
|
remote: .
|
11
11
|
specs:
|
12
|
-
devise-secure_password (
|
12
|
+
devise-secure_password (2.0.0)
|
13
13
|
devise (>= 4.0.0, < 5.0.0)
|
14
|
-
railties (>= 5.0.0, <
|
14
|
+
railties (>= 5.0.0, < 7.0.0)
|
15
15
|
|
16
16
|
GEM
|
17
17
|
remote: https://rubygems.org/
|
18
18
|
specs:
|
19
|
-
actioncable (
|
20
|
-
actionpack (=
|
19
|
+
actioncable (6.1.3.1)
|
20
|
+
actionpack (= 6.1.3.1)
|
21
|
+
activesupport (= 6.1.3.1)
|
21
22
|
nio4r (~> 2.0)
|
22
23
|
websocket-driver (>= 0.6.1)
|
23
|
-
|
24
|
-
actionpack (=
|
25
|
-
|
26
|
-
|
24
|
+
actionmailbox (6.1.3.1)
|
25
|
+
actionpack (= 6.1.3.1)
|
26
|
+
activejob (= 6.1.3.1)
|
27
|
+
activerecord (= 6.1.3.1)
|
28
|
+
activestorage (= 6.1.3.1)
|
29
|
+
activesupport (= 6.1.3.1)
|
30
|
+
mail (>= 2.7.1)
|
31
|
+
actionmailer (6.1.3.1)
|
32
|
+
actionpack (= 6.1.3.1)
|
33
|
+
actionview (= 6.1.3.1)
|
34
|
+
activejob (= 6.1.3.1)
|
35
|
+
activesupport (= 6.1.3.1)
|
27
36
|
mail (~> 2.5, >= 2.5.4)
|
28
37
|
rails-dom-testing (~> 2.0)
|
29
|
-
actionpack (
|
30
|
-
actionview (=
|
31
|
-
activesupport (=
|
32
|
-
rack (~> 2.0)
|
38
|
+
actionpack (6.1.3.1)
|
39
|
+
actionview (= 6.1.3.1)
|
40
|
+
activesupport (= 6.1.3.1)
|
41
|
+
rack (~> 2.0, >= 2.0.9)
|
33
42
|
rack-test (>= 0.6.3)
|
34
43
|
rails-dom-testing (~> 2.0)
|
35
|
-
rails-html-sanitizer (~> 1.0, >= 1.0
|
36
|
-
|
37
|
-
|
44
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
45
|
+
actiontext (6.1.3.1)
|
46
|
+
actionpack (= 6.1.3.1)
|
47
|
+
activerecord (= 6.1.3.1)
|
48
|
+
activestorage (= 6.1.3.1)
|
49
|
+
activesupport (= 6.1.3.1)
|
50
|
+
nokogiri (>= 1.8.5)
|
51
|
+
actionview (6.1.3.1)
|
52
|
+
activesupport (= 6.1.3.1)
|
38
53
|
builder (~> 3.1)
|
39
54
|
erubi (~> 1.4)
|
40
55
|
rails-dom-testing (~> 2.0)
|
41
|
-
rails-html-sanitizer (~> 1.
|
42
|
-
activejob (
|
43
|
-
activesupport (=
|
56
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
57
|
+
activejob (6.1.3.1)
|
58
|
+
activesupport (= 6.1.3.1)
|
44
59
|
globalid (>= 0.3.6)
|
45
|
-
activemodel (
|
46
|
-
activesupport (=
|
47
|
-
activerecord (
|
48
|
-
activemodel (=
|
49
|
-
activesupport (=
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
activerecord (=
|
54
|
-
|
55
|
-
|
60
|
+
activemodel (6.1.3.1)
|
61
|
+
activesupport (= 6.1.3.1)
|
62
|
+
activerecord (6.1.3.1)
|
63
|
+
activemodel (= 6.1.3.1)
|
64
|
+
activesupport (= 6.1.3.1)
|
65
|
+
activestorage (6.1.3.1)
|
66
|
+
actionpack (= 6.1.3.1)
|
67
|
+
activejob (= 6.1.3.1)
|
68
|
+
activerecord (= 6.1.3.1)
|
69
|
+
activesupport (= 6.1.3.1)
|
70
|
+
marcel (~> 1.0.0)
|
71
|
+
mini_mime (~> 1.0.2)
|
72
|
+
activesupport (6.1.3.1)
|
56
73
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
57
|
-
i18n (>=
|
58
|
-
minitest (
|
59
|
-
tzinfo (~>
|
60
|
-
|
61
|
-
|
74
|
+
i18n (>= 1.6, < 2)
|
75
|
+
minitest (>= 5.1)
|
76
|
+
tzinfo (~> 2.0)
|
77
|
+
zeitwerk (~> 2.3)
|
78
|
+
addressable (2.7.0)
|
79
|
+
public_suffix (>= 2.0.2, < 5.0)
|
62
80
|
ansi (1.5.0)
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
capybara (2.18.0)
|
81
|
+
ast (2.4.2)
|
82
|
+
bcrypt (3.1.16)
|
83
|
+
builder (3.2.4)
|
84
|
+
capybara (3.35.3)
|
68
85
|
addressable
|
69
86
|
mini_mime (>= 0.1.3)
|
70
|
-
nokogiri (
|
71
|
-
rack (>= 1.
|
72
|
-
rack-test (>= 0.
|
73
|
-
|
74
|
-
|
87
|
+
nokogiri (~> 1.8)
|
88
|
+
rack (>= 1.6.0)
|
89
|
+
rack-test (>= 0.6.3)
|
90
|
+
regexp_parser (>= 1.5, < 3.0)
|
91
|
+
xpath (~> 3.2)
|
92
|
+
capybara-screenshot (1.0.25)
|
75
93
|
capybara (>= 1.0, < 4)
|
76
94
|
launchy
|
77
|
-
childprocess (0.
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
devise (4.4.3)
|
95
|
+
childprocess (3.0.0)
|
96
|
+
codecov (0.5.2)
|
97
|
+
simplecov (>= 0.15, < 0.22)
|
98
|
+
concurrent-ruby (1.1.8)
|
99
|
+
crass (1.0.6)
|
100
|
+
database_cleaner (2.0.1)
|
101
|
+
database_cleaner-active_record (~> 2.0.0)
|
102
|
+
database_cleaner-active_record (2.0.0)
|
103
|
+
activerecord (>= 5.a)
|
104
|
+
database_cleaner-core (~> 2.0.0)
|
105
|
+
database_cleaner-core (2.0.1)
|
106
|
+
devise (4.8.0)
|
90
107
|
bcrypt (~> 3.0)
|
91
108
|
orm_adapter (~> 0.1)
|
92
|
-
railties (>= 4.1.0
|
109
|
+
railties (>= 4.1.0)
|
93
110
|
responders
|
94
111
|
warden (~> 1.2.3)
|
95
|
-
diff-lcs (1.
|
96
|
-
docile (1.
|
97
|
-
erubi (1.
|
112
|
+
diff-lcs (1.4.4)
|
113
|
+
docile (1.3.5)
|
114
|
+
erubi (1.10.0)
|
98
115
|
erubis (2.7.0)
|
99
|
-
|
100
|
-
ffi (1.9.23)
|
101
|
-
flay (2.11.0)
|
116
|
+
flay (2.12.1)
|
102
117
|
erubis (~> 2.7.0)
|
103
118
|
path_expander (~> 1.0)
|
104
119
|
ruby_parser (~> 3.0)
|
105
120
|
sexp_processor (~> 4.0)
|
106
|
-
globalid (0.4.
|
121
|
+
globalid (0.4.2)
|
107
122
|
activesupport (>= 4.2.0)
|
108
|
-
|
109
|
-
i18n (1.0.1)
|
123
|
+
i18n (1.8.10)
|
110
124
|
concurrent-ruby (~> 1.0)
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
libv8 (3.16.14.19)
|
115
|
-
loofah (2.2.2)
|
125
|
+
launchy (2.5.0)
|
126
|
+
addressable (~> 2.7)
|
127
|
+
loofah (2.9.1)
|
116
128
|
crass (~> 1.0.2)
|
117
129
|
nokogiri (>= 1.5.9)
|
118
|
-
mail (2.7.
|
130
|
+
mail (2.7.1)
|
119
131
|
mini_mime (>= 0.1.1)
|
120
|
-
marcel (0.
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
mini_portile2 (~> 2.3.0)
|
132
|
+
marcel (1.0.1)
|
133
|
+
method_source (1.0.0)
|
134
|
+
mini_mime (1.0.3)
|
135
|
+
mini_portile2 (2.5.1)
|
136
|
+
minitest (5.14.4)
|
137
|
+
nio4r (2.5.7)
|
138
|
+
nokogiri (1.11.3)
|
139
|
+
mini_portile2 (~> 2.5.0)
|
140
|
+
racc (~> 1.4)
|
130
141
|
orm_adapter (0.5.0)
|
131
|
-
parallel (1.
|
132
|
-
parser (
|
133
|
-
ast (~> 2.4.
|
134
|
-
path_expander (1.0
|
135
|
-
|
136
|
-
|
137
|
-
rack (2.
|
138
|
-
rack-test (1.
|
142
|
+
parallel (1.20.1)
|
143
|
+
parser (3.0.1.1)
|
144
|
+
ast (~> 2.4.1)
|
145
|
+
path_expander (1.1.0)
|
146
|
+
public_suffix (4.0.6)
|
147
|
+
racc (1.5.2)
|
148
|
+
rack (2.2.3)
|
149
|
+
rack-test (1.1.0)
|
139
150
|
rack (>= 1.0, < 3)
|
140
|
-
rails (
|
141
|
-
actioncable (=
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
151
|
+
rails (6.1.3.1)
|
152
|
+
actioncable (= 6.1.3.1)
|
153
|
+
actionmailbox (= 6.1.3.1)
|
154
|
+
actionmailer (= 6.1.3.1)
|
155
|
+
actionpack (= 6.1.3.1)
|
156
|
+
actiontext (= 6.1.3.1)
|
157
|
+
actionview (= 6.1.3.1)
|
158
|
+
activejob (= 6.1.3.1)
|
159
|
+
activemodel (= 6.1.3.1)
|
160
|
+
activerecord (= 6.1.3.1)
|
161
|
+
activestorage (= 6.1.3.1)
|
162
|
+
activesupport (= 6.1.3.1)
|
163
|
+
bundler (>= 1.15.0)
|
164
|
+
railties (= 6.1.3.1)
|
152
165
|
sprockets-rails (>= 2.0.0)
|
153
166
|
rails-dom-testing (2.0.3)
|
154
167
|
activesupport (>= 4.2.0)
|
155
168
|
nokogiri (>= 1.6)
|
156
|
-
rails-html-sanitizer (1.0
|
157
|
-
loofah (~> 2.
|
158
|
-
railties (
|
159
|
-
actionpack (=
|
160
|
-
activesupport (=
|
169
|
+
rails-html-sanitizer (1.3.0)
|
170
|
+
loofah (~> 2.3)
|
171
|
+
railties (6.1.3.1)
|
172
|
+
actionpack (= 6.1.3.1)
|
173
|
+
activesupport (= 6.1.3.1)
|
161
174
|
method_source
|
162
175
|
rake (>= 0.8.7)
|
163
|
-
thor (
|
176
|
+
thor (~> 1.0)
|
164
177
|
rainbow (3.0.0)
|
165
|
-
rake (
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
rspec-
|
175
|
-
|
176
|
-
rspec-
|
177
|
-
rspec-
|
178
|
-
rspec-support (~> 3.7.0)
|
179
|
-
rspec-expectations (3.7.0)
|
178
|
+
rake (13.0.3)
|
179
|
+
regexp_parser (2.1.1)
|
180
|
+
responders (3.0.1)
|
181
|
+
actionpack (>= 5.0)
|
182
|
+
railties (>= 5.0)
|
183
|
+
rexml (3.2.5)
|
184
|
+
rspec (3.10.0)
|
185
|
+
rspec-core (~> 3.10.0)
|
186
|
+
rspec-expectations (~> 3.10.0)
|
187
|
+
rspec-mocks (~> 3.10.0)
|
188
|
+
rspec-core (3.10.1)
|
189
|
+
rspec-support (~> 3.10.0)
|
190
|
+
rspec-expectations (3.10.1)
|
180
191
|
diff-lcs (>= 1.2.0, < 2.0)
|
181
|
-
rspec-support (~> 3.
|
182
|
-
rspec-mocks (3.
|
192
|
+
rspec-support (~> 3.10.0)
|
193
|
+
rspec-mocks (3.10.2)
|
183
194
|
diff-lcs (>= 1.2.0, < 2.0)
|
184
|
-
rspec-support (~> 3.
|
185
|
-
rspec-rails (
|
186
|
-
actionpack (>=
|
187
|
-
activesupport (>=
|
188
|
-
railties (>=
|
189
|
-
rspec-core (~> 3.
|
190
|
-
rspec-expectations (~> 3.
|
191
|
-
rspec-mocks (~> 3.
|
192
|
-
rspec-support (~> 3.
|
193
|
-
rspec-support (3.
|
194
|
-
rspec_junit_formatter (0.
|
195
|
+
rspec-support (~> 3.10.0)
|
196
|
+
rspec-rails (5.0.1)
|
197
|
+
actionpack (>= 5.2)
|
198
|
+
activesupport (>= 5.2)
|
199
|
+
railties (>= 5.2)
|
200
|
+
rspec-core (~> 3.10)
|
201
|
+
rspec-expectations (~> 3.10)
|
202
|
+
rspec-mocks (~> 3.10)
|
203
|
+
rspec-support (~> 3.10)
|
204
|
+
rspec-support (3.10.2)
|
205
|
+
rspec_junit_formatter (0.4.1)
|
195
206
|
rspec-core (>= 2, < 4, != 2.12.0)
|
196
|
-
rubocop (
|
207
|
+
rubocop (1.13.0)
|
197
208
|
parallel (~> 1.10)
|
198
|
-
parser (>=
|
199
|
-
powerpack (~> 0.1)
|
209
|
+
parser (>= 3.0.0.0)
|
200
210
|
rainbow (>= 2.2.2, < 4.0)
|
211
|
+
regexp_parser (>= 1.8, < 3.0)
|
212
|
+
rexml
|
213
|
+
rubocop-ast (>= 1.2.0, < 2.0)
|
201
214
|
ruby-progressbar (~> 1.7)
|
202
|
-
unicode-display_width (
|
203
|
-
|
204
|
-
|
215
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
216
|
+
rubocop-ast (1.5.0)
|
217
|
+
parser (>= 3.0.1.1)
|
218
|
+
rubocop-rails (2.9.1)
|
219
|
+
activesupport (>= 4.2.0)
|
220
|
+
rack (>= 1.1)
|
221
|
+
rubocop (>= 0.90.0, < 2.0)
|
222
|
+
rubocop-rspec (2.3.0)
|
223
|
+
rubocop (~> 1.0)
|
224
|
+
rubocop-ast (>= 1.1.0)
|
225
|
+
ruby-progressbar (1.11.0)
|
226
|
+
ruby2ruby (2.4.4)
|
205
227
|
ruby_parser (~> 3.1)
|
206
228
|
sexp_processor (~> 4.6)
|
207
|
-
ruby_parser (3.
|
229
|
+
ruby_parser (3.15.1)
|
208
230
|
sexp_processor (~> 4.9)
|
209
|
-
rubyzip (
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
sprockets-rails (>= 2.0, < 4.0)
|
220
|
-
tilt (>= 1.1, < 3)
|
221
|
-
selenium-webdriver (3.11.0)
|
222
|
-
childprocess (~> 0.5)
|
223
|
-
rubyzip (~> 1.2)
|
224
|
-
sexp_processor (4.11.0)
|
225
|
-
simplecov (0.15.1)
|
226
|
-
docile (~> 1.1.0)
|
227
|
-
json (>= 1.8, < 3)
|
228
|
-
simplecov-html (~> 0.10.0)
|
229
|
-
simplecov-console (0.4.2)
|
231
|
+
rubyzip (2.3.0)
|
232
|
+
selenium-webdriver (3.142.7)
|
233
|
+
childprocess (>= 0.5, < 4.0)
|
234
|
+
rubyzip (>= 1.2.2)
|
235
|
+
sexp_processor (4.15.2)
|
236
|
+
simplecov (0.21.2)
|
237
|
+
docile (~> 1.1)
|
238
|
+
simplecov-html (~> 0.11)
|
239
|
+
simplecov_json_formatter (~> 0.1)
|
240
|
+
simplecov-console (0.9.1)
|
230
241
|
ansi
|
231
|
-
hirb
|
232
242
|
simplecov
|
233
|
-
|
234
|
-
|
243
|
+
terminal-table
|
244
|
+
simplecov-html (0.12.3)
|
245
|
+
simplecov_json_formatter (0.1.3)
|
246
|
+
sprockets (4.0.2)
|
235
247
|
concurrent-ruby (~> 1.0)
|
236
248
|
rack (> 1, < 3)
|
237
|
-
sprockets-rails (3.2.
|
249
|
+
sprockets-rails (3.2.2)
|
238
250
|
actionpack (>= 4.0)
|
239
251
|
activesupport (>= 4.0)
|
240
252
|
sprockets (>= 3.0.0)
|
241
|
-
sqlite3 (1.
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
warden (1.2.7)
|
252
|
-
rack (>= 1.0)
|
253
|
-
websocket-driver (0.7.0)
|
253
|
+
sqlite3 (1.4.2)
|
254
|
+
terminal-table (3.0.0)
|
255
|
+
unicode-display_width (~> 1.1, >= 1.1.1)
|
256
|
+
thor (1.1.0)
|
257
|
+
tzinfo (2.0.4)
|
258
|
+
concurrent-ruby (~> 1.0)
|
259
|
+
unicode-display_width (1.7.0)
|
260
|
+
warden (1.2.9)
|
261
|
+
rack (>= 2.0.9)
|
262
|
+
websocket-driver (0.7.3)
|
254
263
|
websocket-extensions (>= 0.1.0)
|
255
|
-
websocket-extensions (0.1.
|
256
|
-
xpath (3.
|
264
|
+
websocket-extensions (0.1.5)
|
265
|
+
xpath (3.2.0)
|
257
266
|
nokogiri (~> 1.8)
|
267
|
+
zeitwerk (2.4.2)
|
258
268
|
|
259
269
|
PLATFORMS
|
260
270
|
ruby
|
261
271
|
|
262
272
|
DEPENDENCIES
|
263
|
-
bundler (
|
264
|
-
capybara (
|
265
|
-
capybara-screenshot (
|
266
|
-
|
267
|
-
database_cleaner (
|
273
|
+
bundler (>= 2.2.14)
|
274
|
+
capybara (>= 3.35.3)
|
275
|
+
capybara-screenshot (>= 1.0.18)
|
276
|
+
codecov
|
277
|
+
database_cleaner (>= 2.0.1)
|
268
278
|
devise (~> 4.0)
|
269
279
|
devise-secure_password!
|
270
|
-
flay (
|
271
|
-
launchy (
|
272
|
-
rails (
|
273
|
-
rake (
|
274
|
-
rspec (
|
275
|
-
rspec-rails (
|
276
|
-
rspec_junit_formatter (
|
277
|
-
rubocop (>= 0.
|
278
|
-
|
279
|
-
|
280
|
-
|
280
|
+
flay (>= 2.10.0)
|
281
|
+
launchy (>= 2.4.3)
|
282
|
+
rails (>= 5.2.0)
|
283
|
+
rake (>= 12.3)
|
284
|
+
rspec (>= 3.7)
|
285
|
+
rspec-rails (>= 3.7)
|
286
|
+
rspec_junit_formatter (>= 0.3)
|
287
|
+
rubocop (>= 1.0.0)
|
288
|
+
rubocop-rails (>= 2.3.2)
|
289
|
+
rubocop-rspec (>= 1.35.0)
|
290
|
+
ruby2ruby (>= 2.4.0)
|
291
|
+
selenium-webdriver (>= 3.7.0)
|
281
292
|
shoulda-matchers!
|
282
|
-
simplecov (
|
283
|
-
simplecov-console (
|
284
|
-
sqlite3 (
|
285
|
-
therubyracer (~> 0.12.3)
|
293
|
+
simplecov (>= 0.18.2)
|
294
|
+
simplecov-console (>= 0.4.2)
|
295
|
+
sqlite3 (>= 1.3.13)
|
286
296
|
|
287
297
|
BUNDLED WITH
|
288
|
-
|
298
|
+
2.2.16
|