-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathBase58Swift.podspec
More file actions
23 lines (20 loc) · 916 Bytes
/
Base58Swift.podspec
File metadata and controls
23 lines (20 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "Base58Swift"
s.version = "2.1.11"
s.summary = "A pure swift implementation of base58 string encoding and decoding."
s.description = <<-DESC
A pure swift implementation of base58 string encoding and decoding. Based off of https://github.com/jbenet/go-base58.
DESC
s.homepage = "https://github.com/keefertaylor/Base58Swift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Keefer Taylor" => "keefer@keefertaylor.com" }
s.source = { :git => "https://github.com/keefertaylor/Base58Swift.git", :tag => "2.1.11" }
s.source_files = "Base58Swift/*.swift"
s.swift_version = "4.2"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.dependency "BigInt", "~> 5.0.0"
s.test_spec "Tests" do |test_spec|
test_spec.source_files = "Base58SwiftTests/*.swift"
end
end