common_french_passwords 0.0.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.
@@ -0,0 +1,7 @@
1
+ module CommonFrenchPasswords
2
+ FILE_PATH = File.join(File.dirname(__FILE__), '../data/french_passwords_top20000.txt')
3
+
4
+ def self.list
5
+ File.readlines(FILE_PATH, chomp: true)
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,44 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: common_french_passwords
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - François Ferrandis
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-09-06 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A Ruby gem wrapper around https://github.com/tarraschk/richelieu
14
+ email: francois@ferrandis.cool
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - data/french_passwords_top20000.txt
20
+ - lib/common_french_passwords.rb
21
+ homepage: https://rubygems.org/gems/common_french_passwords
22
+ licenses:
23
+ - MIT
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubygems_version: 3.2.15
41
+ signing_key:
42
+ specification_version: 4
43
+ summary: Most common french passwords
44
+ test_files: []