forked from keefertaylor/MnemonicKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMnemonicKit.podspec
More file actions
27 lines (23 loc) · 1.18 KB
/
MnemonicKit.podspec
File metadata and controls
27 lines (23 loc) · 1.18 KB
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
27
Pod::Spec.new do |s|
s.name = "MnemonicKit"
s.version = "1.3.2"
s.summary = "MnemonicKit provides a Swift implementation of BIP39"
s.description = <<-DESC
MnemonicKit provides a Swift implementation of BIP39.
This library is originally forked from CKMnemonic: https://github.com/CikeQiu/CKMnemonic. Modifications are made for non-throwing APIs and support on OSX as well as iOS. Credit for most of this work is given to work_cocody@hotmail.com, qiuhongyang@askcoin.org.
DESC
s.homepage = "https://github.com/keefertaylor/MnemonicKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Keefer Taylor" => "keefer@keefertaylor.com" }
s.source = { :git => "https://github.com/keefertaylor/MnemonicKit.git", :tag => "1.3.2" }
s.source_files = "MnemonicKit/**/*.swift",
s.exclude_files = "Sources/App/*.swift"
s.swift_version = "4.2"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.dependency "CryptoSwift", "~> 0.13.1"
s.test_spec "Tests" do |test_spec|
test_spec.source_files = "MnemonicKitTests/*.swift"
test_spec.resources = ["MnemonicKitTests/*.json"]
end
end