-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathzxcvbn-ruby.gemspec
More file actions
30 lines (25 loc) · 1.12 KB
/
zxcvbn-ruby.gemspec
File metadata and controls
30 lines (25 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true
require File.expand_path('lib/zxcvbn/version', __dir__)
Gem::Specification.new do |gem|
gem.authors = ['Steve Hodgkiss', 'Matthieu Aussaguel']
gem.email = ['steve@hodgkiss.me', 'matthieu.aussaguel@gmail.com']
gem.description = 'Ruby port of Dropboxs zxcvbn.js'
gem.summary = ''
gem.homepage = 'https://github.com/envato/zxcvbn-ruby'
gem.files = `git ls-files -z`.split("\x0").reject do |file|
file.match(%r{^(\.|CODE_OF_CONDUCT.md|Gemfile|Rakefile|Guardfile|zxcvbn-ruby.gemspec|rbs_collection.yaml|spec/)})
end
gem.name = 'zxcvbn-ruby'
gem.require_paths = ['lib']
gem.version = Zxcvbn::VERSION
gem.license = 'MIT'
gem.required_ruby_version = '>= 2.5'
gem.metadata = {
'allowed_push_host' => 'https://rubygems.org',
'bug_tracker_uri' => "#{gem.homepage}/issues",
'changelog_uri' => "#{gem.homepage}/blob/HEAD/CHANGELOG.md",
'documentation_uri' => "https://www.rubydoc.info/gems/#{gem.name}/#{gem.version}",
'homepage_uri' => gem.homepage,
'source_code_uri' => "#{gem.homepage}/tree/v#{gem.version}"
}
end