zxcvbn 0.1.6 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -1
- data/README.md +4 -1
- data/lib/zxcvbn/frequency_lists.rb +1 -3
- data/lib/zxcvbn/matching.rb +2 -6
- data/lib/zxcvbn/version.rb +1 -1
- data/lib/zxcvbn.rb +1 -1
- data/zxcvbn.gemspec +6 -3
- metadata +4 -14
- data/.gitignore +0 -11
- data/.rspec +0 -3
- data/.rubocop.yml +0 -45
- data/.travis.yml +0 -6
- data/CODE_OF_CONDUCT.md +0 -84
- data/Gemfile +0 -17
- data/Gemfile.lock +0 -80
- data/Rakefile +0 -12
- data/bin/console +0 -18
- data/bin/setup +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fa46dde2a5eb2757753576eb8ff1fb74d7bdb3012dc91c6c9cfd7bc70ca91675
|
4
|
+
data.tar.gz: 3cf3b2e04f76138324548ea35ac3291833cb159b520b207a846cdab5e1a50e7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06a251cda230ac1992543b624d64f8b3b8d33bdf9f579deb9bce8d94da65de3f4625330d14c98aa1587d3ccce08cd2998e3f9302c1cfcf9acff6ecc5883fe8d0
|
7
|
+
data.tar.gz: 884c32486ad5332b429939fa8180c49fb1d381b36d4ae0b69518d223642a2fa48af595bf8efe11568ff416e44a555ac5ee4854349b25623876bb61b02112b78a
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
## [0.1.8] - 2023-01-22
|
2
|
+
- How to find information on translations on README.
|
3
|
+
- Drop automatic tests on ruby 2.5 (It still works on it but development gems are failing to build).
|
4
|
+
- Update dev gems to prepare to test on Ruby 3.1 and 3.2. (mini_racer, rubocop and bundler)
|
5
|
+
- Fix Style/RedundantStringEscape on frequency_lists.rb
|
6
|
+
- Add automated tests for Ruby 3.1 and 3.2
|
7
|
+
- Add MFA requirement on release
|
8
|
+
- Trim non-production files from final gem
|
9
|
+
|
10
|
+
## [0.1.7] - 2021-06-12
|
11
|
+
- Ported original specs
|
12
|
+
- Fix difference found on enumerate_l33t_subs
|
13
|
+
- Setup to also test against current versions of ruby
|
14
|
+
|
1
15
|
## [0.1.6] - 2021-05-28
|
2
16
|
- Added test methods for compatibility with zxcvbn-js and zxcvbn-ruby.
|
3
17
|
|
@@ -9,7 +23,6 @@
|
|
9
23
|
- Bunch of fixes, all example passwords included have same result as js version.
|
10
24
|
- consistent code style applied.
|
11
25
|
|
12
|
-
|
13
26
|
## [0.1.0] - 2021-05-16
|
14
27
|
|
15
28
|
- Initial release
|
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/zxcvbn.svg)](https://badge.fury.io/rb/zxcvbn)
|
4
4
|
[![Build Status](https://travis-ci.com/formigarafa/zxcvbn-rb.svg?branch=master)](https://travis-ci.com/formigarafa/zxcvbn-rb)
|
5
5
|
|
6
|
-
Ruby port of Dropbox's [zxcvbn.js]
|
6
|
+
Ruby port of Dropbox's [zxcvbn.js](https://github.com/dropbox/zxcvbn) JavaScript library running completely in Ruby (no need to load execjs or libv8).
|
7
7
|
|
8
8
|
The intention is to provide an option 100% Ruby solution with all the same features and same results (or as close to the original JS function as possible).
|
9
9
|
|
@@ -75,6 +75,9 @@ Zxcvbn.zxcvbn("password")
|
|
75
75
|
|
76
76
|
This gem include a compatible interface so it can be used as a drop-in substitution for `zxcvbn-js` or `zxcvbn-ruby`. You can just call `Zxcvbn.test` or use `Zxcvbn::Tester.new` the same way as you would if you were using `zxcvbn-js` or `zxcvbn-ruby`.
|
77
77
|
|
78
|
+
### Note about translations (i18n, gettext, etc...)
|
79
|
+
Check the [wiki](https://github.com/formigarafa/zxcvbn-rb/wiki) for more details on how to handle translations.
|
80
|
+
|
78
81
|
## Development
|
79
82
|
|
80
83
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|