MnemonicSwift/MnemonicSwift.podspec

26 lines
995 B
Plaintext
Raw Normal View History

2020-06-08 14:17:51 -07:00
Pod::Spec.new do |s|
s.name = "MnemonicSwift"
2022-04-27 16:32:48 -07:00
s.version = "2.2.4"
2020-06-08 14:17:51 -07:00
s.summary = "A Swift implementation of BIP39 Mnemonics"
s.description = <<-DESC
MnemonicSwift provides a Swift implementation of BIP39 using CriptoKit
2020-06-12 16:56:18 -07:00
This library is originally forked from MnemonicSwift: https://github.com/keefertaylor/MnemonicSwift
2020-06-08 14:17:51 -07:00
DESC
s.homepage = "https://github.com/zcash-hackworks/MnemonicSwift"
s.license = { :type => "dual", :file => "COPYING.md" }
2020-06-08 14:17:51 -07:00
s.author = { "Francisco Gindre" => "francisco.gindre@gmail.com" }
s.source = { :git => "https://github.com/zcash-hackworks/MnemonicSwift.git", :tag => s.version }
s.source_files = "MnemonicSwift/**/*.swift",
2021-12-13 06:08:01 -08:00
s.swift_version = "5.3"
2020-06-08 14:17:51 -07:00
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "10.15"
s.framework = "CryptoKit"
2020-06-08 14:17:51 -07:00
s.test_spec "Tests" do |test_spec|
test_spec.source_files = "Tests/*.swift"
test_spec.resources = ["Tests/*.json"]
end
end