Files
OneTimePassword/OneTimePassword.podspec
T
Matt Rubin 6d2f4f0da9 Remove the CommonCrypto shim
As of Xcode 10, the custom module maps are no longer needed.
2018-09-18 20:52:33 -04:00

16 lines
612 B
Ruby

Pod::Spec.new do |s|
s.name = "OneTimePassword"
s.version = "3.1.5"
s.summary = "A small library for generating TOTP and HOTP one-time passwords."
s.homepage = "https://github.com/mattrubin/OneTimePassword"
s.license = "MIT"
s.author = "Matt Rubin"
s.swift_version = "4.0"
s.ios.deployment_target = "8.0"
s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/mattrubin/OneTimePassword.git", :tag => s.version }
s.source_files = "Sources/*.{swift}"
s.requires_arc = true
s.dependency "Base32", "~> 1.1.2"
end