-
Notifications
You must be signed in to change notification settings - Fork 47
/
zxcvbn-ruby.gemspec
33 lines (27 loc) · 1.15 KB
/
zxcvbn-ruby.gemspec
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
31
32
33
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/zxcvbn/version', __FILE__)
GITHUB_URL = 'https://github.com/envato/zxcvbn-ruby'
Gem::Specification.new do |gem|
gem.authors = ["Steve Hodgkiss", "Matthieu Aussaguel"]
gem.email = ["steve@hodgkiss.me", "matthieu.aussaguel@gmail.com"]
gem.description = %q{Ruby port of Dropboxs zxcvbn.js}
gem.summary = %q{}
gem.homepage = "http://github.com/envato/zxcvbn-ruby"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "zxcvbn-ruby"
gem.require_paths = ["lib"]
gem.version = Zxcvbn::VERSION
gem.license = 'MIT'
gem.required_ruby_version = '>= 2.5'
gem.add_development_dependency 'mini_racer'
gem.add_development_dependency 'rspec'
gem.metadata = {
'bug_tracker_uri' => "#{GITHUB_URL}/issues",
'changelog_uri' => "#{GITHUB_URL}/blob/HEAD/CHANGELOG.md",
'documentation_uri' => "#{GITHUB_URL}/blob/HEAD/README.md",
'homepage_uri' => GITHUB_URL,
'source_code_uri' => GITHUB_URL
}
end