devise-secure_password 2.1.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Changelog.md +8 -0
- data/Gemfile.lock +212 -175
- data/README.md +77 -105
- data/app/controllers/devise/passwords_with_policy_controller.rb +1 -1
- data/config/locales/en.yml +2 -2
- data/devise-secure_password-2.2.0.gem +0 -0
- data/devise-secure_password.gemspec +6 -6
- data/devise_security_password.png +0 -0
- data/docs/upgrading_to_new_rails_version.md +46 -0
- data/gemfiles/rails_7_0.gemfile +2 -1
- data/gemfiles/rails_7_0.gemfile.lock +443 -0
- data/gemfiles/rails_8_0.gemfile +71 -0
- data/gemfiles/rails_8_0.gemfile.lock +511 -0
- data/lib/devise/secure_password/models/password_disallows_frequent_changes.rb +2 -2
- data/lib/devise/secure_password/models/password_disallows_frequent_reuse.rb +2 -2
- data/lib/devise/secure_password/models/password_has_required_content.rb +3 -3
- data/lib/devise/secure_password/models/previous_password.rb +1 -1
- data/lib/devise/secure_password/version.rb +1 -1
- metadata +16 -13
- data/gemfiles/rails_6_1.gemfile +0 -57
- data/pkg/devise-secure_password-2.0.1.gem +0 -0
- data/pkg/devise-secure_password-2.1.0.gem +0 -0
data/gemfiles/rails_6_1.gemfile
DELETED
@@ -1,57 +0,0 @@
|
|
1
|
-
source 'https://rubygems.org'
|
2
|
-
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
3
|
-
|
4
|
-
ENV['RAILS_TARGET'] ||= '6.1'
|
5
|
-
|
6
|
-
gemspec path: '../'
|
7
|
-
|
8
|
-
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
|
9
|
-
gem 'rails', '~> 6.1.3', '>= 6.1.3.1'
|
10
|
-
# Use sqlite3 as the database for Active Record
|
11
|
-
gem 'sqlite3', '~> 1.7.0'
|
12
|
-
# Use Puma as the app server
|
13
|
-
gem 'puma', '~> 5.0'
|
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', '~> 5.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.4', 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.3'
|
41
|
-
gem 'web-console', '>= 4.1.0'
|
42
|
-
end
|
43
|
-
|
44
|
-
group :test do
|
45
|
-
# Adds support for Capybara system testing and selenium driver
|
46
|
-
gem 'capybara', '>= 3.26'
|
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'
|
Binary file
|
Binary file
|