Skip to content

Commit 5c03837

Browse files
author
NetSHH Robot
committed
chore: bump version
1 parent a83bf8d commit 5c03837

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

bcrypt_pbkdf.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'bcrypt_pbkdf'
3-
s.version = '1.1.0'
3+
s.version = '1.1.1.rc1'
44

55
s.summary = "OpenBSD's bcrypt_pbkdf (a variant of PBKDF2 with bcrypt-based PRF)"
66
s.description = <<-EOF

bcrypt_pbkdf.gemspec.old

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Gem::Specification.new do |s|
2+
s.name = 'bcrypt_pbkdf'
3+
s.version = '1.1.0'
4+
5+
s.summary = "OpenBSD's bcrypt_pbkdf (a variant of PBKDF2 with bcrypt-based PRF)"
6+
s.description = <<-EOF
7+
This gem implements bcrypt_pbkdf (a variant of PBKDF2 with bcrypt-based PRF)
8+
EOF
9+
10+
s.files = `git ls-files`.split("\n")
11+
s.require_path = 'lib'
12+
13+
s.add_development_dependency 'rake-compiler', '~> 1.2.5'
14+
s.add_development_dependency 'minitest', '~> 5'
15+
s.add_development_dependency 'openssl', '~> 3'
16+
s.add_development_dependency 'rdoc', '~> 6'
17+
s.add_development_dependency 'rake-compiler-dock', '~> 1.5.0'
18+
19+
s.rdoc_options += ['--title', 'bcrypt_pbkdf', '--line-numbers', '--inline-source', '--main', 'README.md']
20+
s.extra_rdoc_files += ['README.md', 'COPYING', 'CHANGELOG.md', *Dir['lib/**/*.rb']]
21+
22+
s.extensions = 'ext/mri/extconf.rb'
23+
24+
s.authors = ["Miklos Fazekas"]
25+
s.email = "[email protected]"
26+
s.homepage = "https://github.com/net-ssh/bcrypt_pbkdf-ruby"
27+
s.license = "MIT"
28+
end

0 commit comments

Comments
 (0)