zxcvbn 0.1.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.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Zxcvbn
4
+ VERSION = "0.1.0"
5
+ end
data/zxcvbn.gemspec ADDED
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/zxcvbn/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "zxcvbn"
7
+ spec.version = Zxcvbn::VERSION
8
+ spec.authors = ["Rafael Santos"]
9
+ spec.email = ["formigarafa@gmail.com"]
10
+
11
+ spec.summary = ""
12
+ spec.description = "Ruby port of Dropbox's zxcvbn.js"
13
+ spec.homepage = "http://github.com/formigarafa/zxcvbn-rb"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = spec.homepage
19
+ spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/HEAD/CHANGELOG.md"
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
25
+ end
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ # Uncomment to register a new dependency of your gem
31
+ # spec.add_dependency "example-gem", "~> 1.0"
32
+
33
+ # For more information and examples about making a new gem, checkout our
34
+ # guide at: https://bundler.io/guides/creating_gem.html
35
+ end
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zxcvbn
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Rafael Santos
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-05-15 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Ruby port of Dropbox's zxcvbn.js
14
+ email:
15
+ - formigarafa@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - ".rspec"
22
+ - ".rubocop.yml"
23
+ - ".travis.yml"
24
+ - CHANGELOG.md
25
+ - CODE_OF_CONDUCT.md
26
+ - Gemfile
27
+ - Gemfile.lock
28
+ - LICENSE.txt
29
+ - README.md
30
+ - Rakefile
31
+ - bin/console
32
+ - bin/setup
33
+ - lib/zxcvbn.rb
34
+ - lib/zxcvbn/adjacency_graphs.rb
35
+ - lib/zxcvbn/feedback.rb
36
+ - lib/zxcvbn/frequency_lists.rb
37
+ - lib/zxcvbn/matching.rb
38
+ - lib/zxcvbn/scoring.rb
39
+ - lib/zxcvbn/time_estimates.rb
40
+ - lib/zxcvbn/version.rb
41
+ - zxcvbn.gemspec
42
+ homepage: http://github.com/formigarafa/zxcvbn-rb
43
+ licenses:
44
+ - MIT
45
+ metadata:
46
+ homepage_uri: http://github.com/formigarafa/zxcvbn-rb
47
+ source_code_uri: http://github.com/formigarafa/zxcvbn-rb
48
+ changelog_uri: http://github.com/formigarafa/zxcvbn-rb/blob/HEAD/CHANGELOG.md
49
+ post_install_message:
50
+ rdoc_options: []
51
+ require_paths:
52
+ - lib
53
+ required_ruby_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: 2.4.0
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ requirements: []
64
+ rubygems_version: 3.0.3
65
+ signing_key:
66
+ specification_version: 4
67
+ summary: ''
68
+ test_files: []