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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ed77be628881ddd6bd6df0f7a60935e193db7cf91f5c928319eed9ac24295bf
4
- data.tar.gz: 20906d11011e8ab3f95dcc9f20cae21b6945999a979b11c452b23f02726abda6
3
+ metadata.gz: fa46dde2a5eb2757753576eb8ff1fb74d7bdb3012dc91c6c9cfd7bc70ca91675
4
+ data.tar.gz: 3cf3b2e04f76138324548ea35ac3291833cb159b520b207a846cdab5e1a50e7b
5
5
  SHA512:
6
- metadata.gz: a6ac81d9c47f5f4a006b7e5e071f0f2fd119d0f9f721d28d7725ab07f8eafa4478f727652b7e51a87d82d5022e761550cecc6f83ff2f38b8cd0171d51061f97b
7
- data.tar.gz: ec59a970bc9037714b93c3d73738b995afa224c25cdca4dd8309e74f7e11df58fe7f618f72805ea004f23ac3387a8f98fa2548d9d2c00419231f7e0e07307db7
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][zxcvbn.js] JavaScript library running completely in Ruby (no need to load execjs or libv8).
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.