devise-secure_password 1.1.0 → 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/Gemfile.lock +215 -205
- data/README.md +7 -9
- data/app/controllers/devise/passwords_with_policy_controller.rb +1 -0
- data/app/views/devise/passwords_with_policy/edit.html.erb +1 -1
- data/config/locales/en.yml +10 -0
- data/devise-secure_password.gemspec +22 -21
- 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 +1 -7
- data/lib/devise/secure_password/controllers/devise_helpers.rb +0 -2
- data/lib/devise/secure_password/controllers/helpers.rb +3 -0
- data/lib/devise/secure_password/models/password_disallows_frequent_reuse.rb +1 -0
- data/lib/devise/secure_password/models/password_has_required_content.rb +16 -14
- data/lib/devise/secure_password/version.rb +1 -1
- data/lib/support/string/character_counter.rb +1 -1
- data/pkg/devise-secure_password-2.0.0.gem +0 -0
- metadata +68 -141
- 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_1.gemfile +0 -20
- data/gemfiles/rails-5_1.gemfile.lock +0 -284
- data/gemfiles/rails-5_1_4.gemfile.lock +0 -282
- data/gemfiles/rails-5_2.gemfile +0 -21
- data/pkg/devise-secure_password-1.0.8.gem +0 -0
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@ as well.
|
|
|
9
9
|
|
|
10
10
|
## Build Status
|
|
11
11
|
|
|
12
|
-
| Service | rails
|
|
12
|
+
| Service | rails 6.1 |
|
|
13
13
|
|:-----------|:-----------:|
|
|
14
14
|
| Circle CI | []() |
|
|
15
15
|
|
|
@@ -32,16 +32,16 @@ The goal of this project is to provide compatibility for officially supported st
|
|
|
32
32
|
and [Ruby on Rails](http://guides.rubyonrails.org/maintenance_policy.html). More specifically, the following releases
|
|
33
33
|
are currently supported by the __Devise Secure Password Extension__:
|
|
34
34
|
|
|
35
|
-
- Ruby on Rails:
|
|
36
|
-
- Ruby:
|
|
35
|
+
- Ruby on Rails: __6.1.x__, __6.0.x__ (current and previous stable release)
|
|
36
|
+
- Ruby: __3.0.x__, __2.7.x__ (current and previous stable release)
|
|
37
37
|
|
|
38
38
|
## Installation
|
|
39
39
|
|
|
40
40
|
Add this line to your application's Gemfile:
|
|
41
41
|
|
|
42
42
|
```ruby
|
|
43
|
-
gem 'devise', '~> 4.
|
|
44
|
-
gem 'devise-secure_password', '~>
|
|
43
|
+
gem 'devise', '~> 4.7'
|
|
44
|
+
gem 'devise-secure_password', '~> 2.0'
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
And then execute:
|
|
@@ -234,8 +234,8 @@ Available Rails targets: 5.1, 5.2
|
|
|
234
234
|
Reconfigure the project by specifying the correct Gemfile when running bundler, followed by running tests:
|
|
235
235
|
|
|
236
236
|
```bash
|
|
237
|
-
prompt> BUNDLE_GEMFILE=gemfiles/
|
|
238
|
-
prompt> BUNDLE_GEMFILE=gemfiles/
|
|
237
|
+
prompt> BUNDLE_GEMFILE=gemfiles/rails_5_2.gemfile bundle
|
|
238
|
+
prompt> BUNDLE_GEMFILE=gemfiles/rails_5_2.gemfile bundle exec rake
|
|
239
239
|
```
|
|
240
240
|
|
|
241
241
|
The only time you need to define the `BUNDLE_GEMFILE` environment variable is when testing a non-default target.
|
|
@@ -260,8 +260,6 @@ for testing.
|
|
|
260
260
|
prompt> brew install chromedriver
|
|
261
261
|
```
|
|
262
262
|
|
|
263
|
-
>NOTE: __ChromeDriver__ < 2.33 has a bug for testing clickable targets; therefore, install >= 2.3.4.
|
|
264
|
-
|
|
265
263
|
You can always install [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/) by downloading and then
|
|
266
264
|
unpacking into the `/usr/local/bin` directory.
|
|
267
265
|
|
|
@@ -42,6 +42,7 @@ module Devise
|
|
|
42
42
|
|
|
43
43
|
def error_string_for_password_expired
|
|
44
44
|
return 'password expired' unless warden.user.class.respond_to?(:password_maximum_age)
|
|
45
|
+
|
|
45
46
|
I18n.t(
|
|
46
47
|
'secure_password.password_requires_regular_updates.errors.messages.password_expired',
|
|
47
48
|
timeframe: precise_distance_of_time_in_words(warden.user.class.password_maximum_age)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<%= form_for(resource, as: resource_name, url: [resource_name, :password_with_policy], html: { method: :put }) do |f| %>
|
|
4
4
|
<% if resource.errors.full_messages.count.positive? %>
|
|
5
|
-
<%=
|
|
5
|
+
<%= render 'devise/shared/error_messages', resource: resource %>
|
|
6
6
|
<% end %>
|
|
7
7
|
|
|
8
8
|
<%= f.hidden_field :update_action, value: :change_password %>
|
data/config/locales/en.yml
CHANGED
|
@@ -29,27 +29,28 @@ Gem::Specification.new do |spec|
|
|
|
29
29
|
spec.require_paths = ['lib']
|
|
30
30
|
|
|
31
31
|
spec.add_runtime_dependency 'devise', '>= 4.0.0', '< 5.0.0'
|
|
32
|
-
spec.add_runtime_dependency 'railties', '>= 5.0.0', '<
|
|
32
|
+
spec.add_runtime_dependency 'railties', '>= 5.0.0', '< 7.0.0'
|
|
33
33
|
|
|
34
|
-
spec.add_development_dependency 'bundler', '
|
|
35
|
-
spec.add_development_dependency 'capybara', '
|
|
36
|
-
spec.add_development_dependency 'capybara-screenshot', '
|
|
37
|
-
spec.add_development_dependency '
|
|
38
|
-
spec.add_development_dependency 'database_cleaner', '~> 1.6', '>= 1.6.2'
|
|
34
|
+
spec.add_development_dependency 'bundler', '>= 2.2.14'
|
|
35
|
+
spec.add_development_dependency 'capybara', '>= 3.35.3'
|
|
36
|
+
spec.add_development_dependency 'capybara-screenshot', '>= 1.0.18'
|
|
37
|
+
spec.add_development_dependency 'database_cleaner', '>= 2.0.1'
|
|
39
38
|
spec.add_development_dependency 'devise', '~> 4.0'
|
|
40
|
-
spec.add_development_dependency 'flay', '
|
|
41
|
-
spec.add_development_dependency 'launchy', '
|
|
42
|
-
spec.add_development_dependency 'rails', '
|
|
43
|
-
spec.add_development_dependency 'rake', '
|
|
44
|
-
spec.add_development_dependency 'rspec', '
|
|
45
|
-
spec.add_development_dependency '
|
|
46
|
-
spec.add_development_dependency '
|
|
47
|
-
spec.add_development_dependency 'rubocop', '>= 0.
|
|
48
|
-
spec.add_development_dependency '
|
|
49
|
-
spec.add_development_dependency '
|
|
50
|
-
spec.add_development_dependency '
|
|
51
|
-
spec.add_development_dependency '
|
|
52
|
-
spec.add_development_dependency '
|
|
53
|
-
|
|
54
|
-
spec.
|
|
39
|
+
spec.add_development_dependency 'flay', '>= 2.10.0'
|
|
40
|
+
spec.add_development_dependency 'launchy', '>= 2.4.3'
|
|
41
|
+
spec.add_development_dependency 'rails', '>= 5.2.0'
|
|
42
|
+
spec.add_development_dependency 'rake', '>= 12.3'
|
|
43
|
+
spec.add_development_dependency 'rspec', '>= 3.7'
|
|
44
|
+
spec.add_development_dependency 'rspec_junit_formatter', '>= 0.3'
|
|
45
|
+
spec.add_development_dependency 'rspec-rails', '>= 3.7'
|
|
46
|
+
spec.add_development_dependency 'rubocop', '>= 1.0.0'
|
|
47
|
+
spec.add_development_dependency 'rubocop-rails', '>= 2.3.2'
|
|
48
|
+
spec.add_development_dependency 'rubocop-rspec', '>= 1.35.0'
|
|
49
|
+
spec.add_development_dependency 'ruby2ruby', '>= 2.4.0'
|
|
50
|
+
spec.add_development_dependency 'selenium-webdriver', '>= 3.7.0'
|
|
51
|
+
spec.add_development_dependency 'simplecov', '>= 0.18.2'
|
|
52
|
+
spec.add_development_dependency 'simplecov-console', '>= 0.4.2'
|
|
53
|
+
spec.add_development_dependency 'sqlite3', '>= 1.3.13'
|
|
54
|
+
|
|
55
|
+
spec.required_ruby_version = '>= 2.7'
|
|
55
56
|
end
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
3
|
+
|
|
4
|
+
ENV['RAILS_TARGET'] ||= '6.0'
|
|
5
|
+
|
|
6
|
+
gemspec path: '../'
|
|
7
|
+
|
|
8
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
9
|
+
gem 'rails', '~> 6.0.3', '>= 6.0.3.6'
|
|
10
|
+
# Use sqlite3 as the database for Active Record
|
|
11
|
+
gem 'sqlite3', '~> 1.4'
|
|
12
|
+
# Use Puma as the app server
|
|
13
|
+
gem 'puma', '~> 4.1'
|
|
14
|
+
# Use SCSS for stylesheets
|
|
15
|
+
gem 'sass-rails', '>= 6'
|
|
16
|
+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
|
17
|
+
gem 'webpacker', '~> 4.0'
|
|
18
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
|
19
|
+
gem 'turbolinks', '~> 5'
|
|
20
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
21
|
+
gem 'jbuilder', '~> 2.7'
|
|
22
|
+
# Use Redis adapter to run Action Cable in production
|
|
23
|
+
# gem 'redis', '~> 4.0'
|
|
24
|
+
# Use Active Model has_secure_password
|
|
25
|
+
# gem 'bcrypt', '~> 3.1.7'
|
|
26
|
+
|
|
27
|
+
# Use Active Storage variant
|
|
28
|
+
# gem 'image_processing', '~> 1.2'
|
|
29
|
+
|
|
30
|
+
# Reduces boot times through caching; required in config/boot.rb
|
|
31
|
+
gem 'bootsnap', '>= 1.4.2', require: false
|
|
32
|
+
|
|
33
|
+
group :development, :test do
|
|
34
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
35
|
+
gem 'byebug', platforms: %i(mri mingw x64_mingw)
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
group :development do
|
|
39
|
+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
|
40
|
+
gem 'listen', '~> 3.2'
|
|
41
|
+
gem 'web-console', '>= 3.3.0'
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
group :test do
|
|
45
|
+
# Adds support for Capybara system testing and selenium driver
|
|
46
|
+
gem 'capybara', '>= 2.15'
|
|
47
|
+
gem 'codecov', require: false
|
|
48
|
+
gem 'selenium-webdriver'
|
|
49
|
+
gem 'shoulda-matchers'
|
|
50
|
+
# Easy installation and use of web drivers to run system tests with browsers
|
|
51
|
+
gem 'webdrivers'
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
55
|
+
gem 'tzinfo-data', platforms: %i(mingw mswin x64_mingw jruby)
|
|
56
|
+
|
|
57
|
+
gem 'webrick', '~> 1.7'
|
|
@@ -0,0 +1,347 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
devise-secure_password (1.1.0)
|
|
5
|
+
devise (>= 4.0.0, < 5.0.0)
|
|
6
|
+
railties (>= 5.0.0, < 7.0.0)
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
actioncable (6.0.3.6)
|
|
12
|
+
actionpack (= 6.0.3.6)
|
|
13
|
+
nio4r (~> 2.0)
|
|
14
|
+
websocket-driver (>= 0.6.1)
|
|
15
|
+
actionmailbox (6.0.3.6)
|
|
16
|
+
actionpack (= 6.0.3.6)
|
|
17
|
+
activejob (= 6.0.3.6)
|
|
18
|
+
activerecord (= 6.0.3.6)
|
|
19
|
+
activestorage (= 6.0.3.6)
|
|
20
|
+
activesupport (= 6.0.3.6)
|
|
21
|
+
mail (>= 2.7.1)
|
|
22
|
+
actionmailer (6.0.3.6)
|
|
23
|
+
actionpack (= 6.0.3.6)
|
|
24
|
+
actionview (= 6.0.3.6)
|
|
25
|
+
activejob (= 6.0.3.6)
|
|
26
|
+
mail (~> 2.5, >= 2.5.4)
|
|
27
|
+
rails-dom-testing (~> 2.0)
|
|
28
|
+
actionpack (6.0.3.6)
|
|
29
|
+
actionview (= 6.0.3.6)
|
|
30
|
+
activesupport (= 6.0.3.6)
|
|
31
|
+
rack (~> 2.0, >= 2.0.8)
|
|
32
|
+
rack-test (>= 0.6.3)
|
|
33
|
+
rails-dom-testing (~> 2.0)
|
|
34
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
|
35
|
+
actiontext (6.0.3.6)
|
|
36
|
+
actionpack (= 6.0.3.6)
|
|
37
|
+
activerecord (= 6.0.3.6)
|
|
38
|
+
activestorage (= 6.0.3.6)
|
|
39
|
+
activesupport (= 6.0.3.6)
|
|
40
|
+
nokogiri (>= 1.8.5)
|
|
41
|
+
actionview (6.0.3.6)
|
|
42
|
+
activesupport (= 6.0.3.6)
|
|
43
|
+
builder (~> 3.1)
|
|
44
|
+
erubi (~> 1.4)
|
|
45
|
+
rails-dom-testing (~> 2.0)
|
|
46
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
|
47
|
+
activejob (6.0.3.6)
|
|
48
|
+
activesupport (= 6.0.3.6)
|
|
49
|
+
globalid (>= 0.3.6)
|
|
50
|
+
activemodel (6.0.3.6)
|
|
51
|
+
activesupport (= 6.0.3.6)
|
|
52
|
+
activerecord (6.0.3.6)
|
|
53
|
+
activemodel (= 6.0.3.6)
|
|
54
|
+
activesupport (= 6.0.3.6)
|
|
55
|
+
activestorage (6.0.3.6)
|
|
56
|
+
actionpack (= 6.0.3.6)
|
|
57
|
+
activejob (= 6.0.3.6)
|
|
58
|
+
activerecord (= 6.0.3.6)
|
|
59
|
+
marcel (~> 1.0.0)
|
|
60
|
+
activesupport (6.0.3.6)
|
|
61
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
62
|
+
i18n (>= 0.7, < 2)
|
|
63
|
+
minitest (~> 5.1)
|
|
64
|
+
tzinfo (~> 1.1)
|
|
65
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
|
66
|
+
addressable (2.7.0)
|
|
67
|
+
public_suffix (>= 2.0.2, < 5.0)
|
|
68
|
+
ansi (1.5.0)
|
|
69
|
+
ast (2.4.2)
|
|
70
|
+
bcrypt (3.1.16)
|
|
71
|
+
bindex (0.8.1)
|
|
72
|
+
bootsnap (1.7.4)
|
|
73
|
+
msgpack (~> 1.0)
|
|
74
|
+
builder (3.2.4)
|
|
75
|
+
byebug (11.1.3)
|
|
76
|
+
capybara (3.35.3)
|
|
77
|
+
addressable
|
|
78
|
+
mini_mime (>= 0.1.3)
|
|
79
|
+
nokogiri (~> 1.8)
|
|
80
|
+
rack (>= 1.6.0)
|
|
81
|
+
rack-test (>= 0.6.3)
|
|
82
|
+
regexp_parser (>= 1.5, < 3.0)
|
|
83
|
+
xpath (~> 3.2)
|
|
84
|
+
capybara-screenshot (1.0.25)
|
|
85
|
+
capybara (>= 1.0, < 4)
|
|
86
|
+
launchy
|
|
87
|
+
childprocess (3.0.0)
|
|
88
|
+
codecov (0.5.2)
|
|
89
|
+
simplecov (>= 0.15, < 0.22)
|
|
90
|
+
concurrent-ruby (1.1.8)
|
|
91
|
+
crass (1.0.6)
|
|
92
|
+
database_cleaner (2.0.1)
|
|
93
|
+
database_cleaner-active_record (~> 2.0.0)
|
|
94
|
+
database_cleaner-active_record (2.0.0)
|
|
95
|
+
activerecord (>= 5.a)
|
|
96
|
+
database_cleaner-core (~> 2.0.0)
|
|
97
|
+
database_cleaner-core (2.0.1)
|
|
98
|
+
devise (4.8.0)
|
|
99
|
+
bcrypt (~> 3.0)
|
|
100
|
+
orm_adapter (~> 0.1)
|
|
101
|
+
railties (>= 4.1.0)
|
|
102
|
+
responders
|
|
103
|
+
warden (~> 1.2.3)
|
|
104
|
+
diff-lcs (1.4.4)
|
|
105
|
+
docile (1.3.5)
|
|
106
|
+
erubi (1.10.0)
|
|
107
|
+
erubis (2.7.0)
|
|
108
|
+
ffi (1.15.0)
|
|
109
|
+
flay (2.12.1)
|
|
110
|
+
erubis (~> 2.7.0)
|
|
111
|
+
path_expander (~> 1.0)
|
|
112
|
+
ruby_parser (~> 3.0)
|
|
113
|
+
sexp_processor (~> 4.0)
|
|
114
|
+
globalid (0.4.2)
|
|
115
|
+
activesupport (>= 4.2.0)
|
|
116
|
+
i18n (1.8.10)
|
|
117
|
+
concurrent-ruby (~> 1.0)
|
|
118
|
+
jbuilder (2.11.2)
|
|
119
|
+
activesupport (>= 5.0.0)
|
|
120
|
+
launchy (2.5.0)
|
|
121
|
+
addressable (~> 2.7)
|
|
122
|
+
listen (3.5.1)
|
|
123
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
124
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
|
125
|
+
loofah (2.9.1)
|
|
126
|
+
crass (~> 1.0.2)
|
|
127
|
+
nokogiri (>= 1.5.9)
|
|
128
|
+
mail (2.7.1)
|
|
129
|
+
mini_mime (>= 0.1.1)
|
|
130
|
+
marcel (1.0.1)
|
|
131
|
+
method_source (1.0.0)
|
|
132
|
+
mini_mime (1.1.0)
|
|
133
|
+
mini_portile2 (2.5.1)
|
|
134
|
+
minitest (5.14.4)
|
|
135
|
+
msgpack (1.4.2)
|
|
136
|
+
nio4r (2.5.7)
|
|
137
|
+
nokogiri (1.11.3)
|
|
138
|
+
mini_portile2 (~> 2.5.0)
|
|
139
|
+
racc (~> 1.4)
|
|
140
|
+
orm_adapter (0.5.0)
|
|
141
|
+
parallel (1.20.1)
|
|
142
|
+
parser (3.0.1.1)
|
|
143
|
+
ast (~> 2.4.1)
|
|
144
|
+
path_expander (1.1.0)
|
|
145
|
+
public_suffix (4.0.6)
|
|
146
|
+
puma (4.3.7)
|
|
147
|
+
nio4r (~> 2.0)
|
|
148
|
+
racc (1.5.2)
|
|
149
|
+
rack (2.2.3)
|
|
150
|
+
rack-proxy (0.6.5)
|
|
151
|
+
rack
|
|
152
|
+
rack-test (1.1.0)
|
|
153
|
+
rack (>= 1.0, < 3)
|
|
154
|
+
rails (6.0.3.6)
|
|
155
|
+
actioncable (= 6.0.3.6)
|
|
156
|
+
actionmailbox (= 6.0.3.6)
|
|
157
|
+
actionmailer (= 6.0.3.6)
|
|
158
|
+
actionpack (= 6.0.3.6)
|
|
159
|
+
actiontext (= 6.0.3.6)
|
|
160
|
+
actionview (= 6.0.3.6)
|
|
161
|
+
activejob (= 6.0.3.6)
|
|
162
|
+
activemodel (= 6.0.3.6)
|
|
163
|
+
activerecord (= 6.0.3.6)
|
|
164
|
+
activestorage (= 6.0.3.6)
|
|
165
|
+
activesupport (= 6.0.3.6)
|
|
166
|
+
bundler (>= 1.3.0)
|
|
167
|
+
railties (= 6.0.3.6)
|
|
168
|
+
sprockets-rails (>= 2.0.0)
|
|
169
|
+
rails-dom-testing (2.0.3)
|
|
170
|
+
activesupport (>= 4.2.0)
|
|
171
|
+
nokogiri (>= 1.6)
|
|
172
|
+
rails-html-sanitizer (1.3.0)
|
|
173
|
+
loofah (~> 2.3)
|
|
174
|
+
railties (6.0.3.6)
|
|
175
|
+
actionpack (= 6.0.3.6)
|
|
176
|
+
activesupport (= 6.0.3.6)
|
|
177
|
+
method_source
|
|
178
|
+
rake (>= 0.8.7)
|
|
179
|
+
thor (>= 0.20.3, < 2.0)
|
|
180
|
+
rainbow (3.0.0)
|
|
181
|
+
rake (13.0.3)
|
|
182
|
+
rb-fsevent (0.10.4)
|
|
183
|
+
rb-inotify (0.10.1)
|
|
184
|
+
ffi (~> 1.0)
|
|
185
|
+
regexp_parser (2.1.1)
|
|
186
|
+
responders (3.0.1)
|
|
187
|
+
actionpack (>= 5.0)
|
|
188
|
+
railties (>= 5.0)
|
|
189
|
+
rexml (3.2.5)
|
|
190
|
+
rspec (3.10.0)
|
|
191
|
+
rspec-core (~> 3.10.0)
|
|
192
|
+
rspec-expectations (~> 3.10.0)
|
|
193
|
+
rspec-mocks (~> 3.10.0)
|
|
194
|
+
rspec-core (3.10.1)
|
|
195
|
+
rspec-support (~> 3.10.0)
|
|
196
|
+
rspec-expectations (3.10.1)
|
|
197
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
198
|
+
rspec-support (~> 3.10.0)
|
|
199
|
+
rspec-mocks (3.10.2)
|
|
200
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
201
|
+
rspec-support (~> 3.10.0)
|
|
202
|
+
rspec-rails (5.0.1)
|
|
203
|
+
actionpack (>= 5.2)
|
|
204
|
+
activesupport (>= 5.2)
|
|
205
|
+
railties (>= 5.2)
|
|
206
|
+
rspec-core (~> 3.10)
|
|
207
|
+
rspec-expectations (~> 3.10)
|
|
208
|
+
rspec-mocks (~> 3.10)
|
|
209
|
+
rspec-support (~> 3.10)
|
|
210
|
+
rspec-support (3.10.2)
|
|
211
|
+
rspec_junit_formatter (0.4.1)
|
|
212
|
+
rspec-core (>= 2, < 4, != 2.12.0)
|
|
213
|
+
rubocop (1.13.0)
|
|
214
|
+
parallel (~> 1.10)
|
|
215
|
+
parser (>= 3.0.0.0)
|
|
216
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
217
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
218
|
+
rexml
|
|
219
|
+
rubocop-ast (>= 1.2.0, < 2.0)
|
|
220
|
+
ruby-progressbar (~> 1.7)
|
|
221
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
222
|
+
rubocop-ast (1.5.0)
|
|
223
|
+
parser (>= 3.0.1.1)
|
|
224
|
+
rubocop-rails (2.9.1)
|
|
225
|
+
activesupport (>= 4.2.0)
|
|
226
|
+
rack (>= 1.1)
|
|
227
|
+
rubocop (>= 0.90.0, < 2.0)
|
|
228
|
+
rubocop-rspec (2.3.0)
|
|
229
|
+
rubocop (~> 1.0)
|
|
230
|
+
rubocop-ast (>= 1.1.0)
|
|
231
|
+
ruby-progressbar (1.11.0)
|
|
232
|
+
ruby2ruby (2.4.4)
|
|
233
|
+
ruby_parser (~> 3.1)
|
|
234
|
+
sexp_processor (~> 4.6)
|
|
235
|
+
ruby_parser (3.15.1)
|
|
236
|
+
sexp_processor (~> 4.9)
|
|
237
|
+
rubyzip (2.3.0)
|
|
238
|
+
sass-rails (6.0.0)
|
|
239
|
+
sassc-rails (~> 2.1, >= 2.1.1)
|
|
240
|
+
sassc (2.4.0)
|
|
241
|
+
ffi (~> 1.9)
|
|
242
|
+
sassc-rails (2.1.2)
|
|
243
|
+
railties (>= 4.0.0)
|
|
244
|
+
sassc (>= 2.0)
|
|
245
|
+
sprockets (> 3.0)
|
|
246
|
+
sprockets-rails
|
|
247
|
+
tilt
|
|
248
|
+
selenium-webdriver (3.142.7)
|
|
249
|
+
childprocess (>= 0.5, < 4.0)
|
|
250
|
+
rubyzip (>= 1.2.2)
|
|
251
|
+
sexp_processor (4.15.2)
|
|
252
|
+
shoulda-matchers (4.5.1)
|
|
253
|
+
activesupport (>= 4.2.0)
|
|
254
|
+
simplecov (0.21.2)
|
|
255
|
+
docile (~> 1.1)
|
|
256
|
+
simplecov-html (~> 0.11)
|
|
257
|
+
simplecov_json_formatter (~> 0.1)
|
|
258
|
+
simplecov-console (0.9.1)
|
|
259
|
+
ansi
|
|
260
|
+
simplecov
|
|
261
|
+
terminal-table
|
|
262
|
+
simplecov-html (0.12.3)
|
|
263
|
+
simplecov_json_formatter (0.1.3)
|
|
264
|
+
sprockets (4.0.2)
|
|
265
|
+
concurrent-ruby (~> 1.0)
|
|
266
|
+
rack (> 1, < 3)
|
|
267
|
+
sprockets-rails (3.2.2)
|
|
268
|
+
actionpack (>= 4.0)
|
|
269
|
+
activesupport (>= 4.0)
|
|
270
|
+
sprockets (>= 3.0.0)
|
|
271
|
+
sqlite3 (1.4.2)
|
|
272
|
+
terminal-table (3.0.0)
|
|
273
|
+
unicode-display_width (~> 1.1, >= 1.1.1)
|
|
274
|
+
thor (1.1.0)
|
|
275
|
+
thread_safe (0.3.6)
|
|
276
|
+
tilt (2.0.10)
|
|
277
|
+
turbolinks (5.2.1)
|
|
278
|
+
turbolinks-source (~> 5.2)
|
|
279
|
+
turbolinks-source (5.2.0)
|
|
280
|
+
tzinfo (1.2.9)
|
|
281
|
+
thread_safe (~> 0.1)
|
|
282
|
+
unicode-display_width (1.7.0)
|
|
283
|
+
warden (1.2.9)
|
|
284
|
+
rack (>= 2.0.9)
|
|
285
|
+
web-console (4.1.0)
|
|
286
|
+
actionview (>= 6.0.0)
|
|
287
|
+
activemodel (>= 6.0.0)
|
|
288
|
+
bindex (>= 0.4.0)
|
|
289
|
+
railties (>= 6.0.0)
|
|
290
|
+
webdrivers (4.6.0)
|
|
291
|
+
nokogiri (~> 1.6)
|
|
292
|
+
rubyzip (>= 1.3.0)
|
|
293
|
+
selenium-webdriver (>= 3.0, < 4.0)
|
|
294
|
+
webpacker (4.3.0)
|
|
295
|
+
activesupport (>= 4.2)
|
|
296
|
+
rack-proxy (>= 0.6.1)
|
|
297
|
+
railties (>= 4.2)
|
|
298
|
+
webrick (1.7.0)
|
|
299
|
+
websocket-driver (0.7.3)
|
|
300
|
+
websocket-extensions (>= 0.1.0)
|
|
301
|
+
websocket-extensions (0.1.5)
|
|
302
|
+
xpath (3.2.0)
|
|
303
|
+
nokogiri (~> 1.8)
|
|
304
|
+
zeitwerk (2.4.2)
|
|
305
|
+
|
|
306
|
+
PLATFORMS
|
|
307
|
+
ruby
|
|
308
|
+
|
|
309
|
+
DEPENDENCIES
|
|
310
|
+
bootsnap (>= 1.4.2)
|
|
311
|
+
bundler (>= 2.2.16)
|
|
312
|
+
byebug
|
|
313
|
+
capybara (>= 2.15)
|
|
314
|
+
capybara-screenshot (>= 1.0.18)
|
|
315
|
+
codecov
|
|
316
|
+
database_cleaner (>= 2.0.1)
|
|
317
|
+
devise (~> 4.0)
|
|
318
|
+
devise-secure_password!
|
|
319
|
+
flay (>= 2.10.0)
|
|
320
|
+
jbuilder (~> 2.7)
|
|
321
|
+
launchy (>= 2.4.3)
|
|
322
|
+
listen (~> 3.2)
|
|
323
|
+
puma (~> 4.1)
|
|
324
|
+
rails (~> 6.0.3, >= 6.0.3.6)
|
|
325
|
+
rake (>= 12.3)
|
|
326
|
+
rspec (>= 3.7)
|
|
327
|
+
rspec-rails (>= 3.7)
|
|
328
|
+
rspec_junit_formatter (>= 0.3)
|
|
329
|
+
rubocop (>= 1.0.0)
|
|
330
|
+
rubocop-rails (>= 2.3.2)
|
|
331
|
+
rubocop-rspec (>= 1.35.0)
|
|
332
|
+
ruby2ruby (>= 2.4.0)
|
|
333
|
+
sass-rails (>= 6)
|
|
334
|
+
selenium-webdriver
|
|
335
|
+
shoulda-matchers
|
|
336
|
+
simplecov (>= 0.18.2)
|
|
337
|
+
simplecov-console (>= 0.4.2)
|
|
338
|
+
sqlite3 (~> 1.4)
|
|
339
|
+
turbolinks (~> 5)
|
|
340
|
+
tzinfo-data
|
|
341
|
+
web-console (>= 3.3.0)
|
|
342
|
+
webdrivers
|
|
343
|
+
webpacker (~> 4.0)
|
|
344
|
+
webrick (~> 1.7)
|
|
345
|
+
|
|
346
|
+
BUNDLED WITH
|
|
347
|
+
2.2.16
|