mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
952 B
25 lines
952 B
require './lib/rotp/version'
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = 'rotp'
|
|
s.version = ROTP::VERSION
|
|
s.platform = Gem::Platform::RUBY
|
|
s.required_ruby_version = '>= 2.3'
|
|
s.license = 'MIT'
|
|
s.authors = ['Mark Percival']
|
|
s.email = ['mark@markpercival.us']
|
|
s.homepage = 'https://github.com/mdp/rotp'
|
|
s.summary = 'A Ruby library for generating and verifying one time passwords'
|
|
s.description = 'Works for both HOTP and TOTP, and includes QR Code provisioning'
|
|
|
|
s.files = `git ls-files`.split("\n")
|
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
s.require_paths = ['lib']
|
|
|
|
s.add_development_dependency "rake", "~> 13.0"
|
|
s.add_development_dependency 'rspec', '~> 3.5'
|
|
s.add_development_dependency 'simplecov', '~> 0.12'
|
|
s.add_development_dependency 'timecop', '~> 0.8'
|
|
end
|