-
Notifications
You must be signed in to change notification settings - Fork 0
/
passw.gemspec
26 lines (22 loc) · 1005 Bytes
/
passw.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
Gem::Specification.new do |s|
s.name = 'passw'
s.version = '1.0.3'
s.date = '2024-02-11'
s.summary = 'Customizable Ruby library for secure password generation with character and strength options.'
s.description = 'Passw is a Ruby library for generating secure passwords, supporting length, character types, exclusions, and entropy-based strength assessment.'
s.authors = ['Sean Nieuwoudt']
s.email = '[email protected]'
s.files = Dir['lib/**/*.rb'] # Dynamic file listing for easy expansion
s.executables << 'passw'
s.homepage = 'https://github.com/sn/passw'
s.license = 'GPL-3.0-or-later'
s.required_ruby_version = '>= 2.7'
# Development dependencies
s.add_development_dependency 'minitest', '~> 5.25'
s.add_development_dependency 'rake', '~> 13.2.1'
# Optional metadata for RubyGems
s.metadata = {
'changelog_uri' => "#{s.homepage}/blob/main/CHANGELOG.md",
'documentation_uri' => "#{s.homepage}#readme"
}
end