-
Notifications
You must be signed in to change notification settings - Fork 1
/
NYHDKey.podspec
30 lines (26 loc) · 1.06 KB
/
NYHDKey.podspec
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
28
29
30
#
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "NYHDKey"
s.version = "0.4.1"
s.summary = "Useful wrapper around CoreBitcoin's HD Key implimentation"
s.description = <<-DESC
Useful wrapper around CoreBitcoin's HD Key implimentation
DESC
s.homepage = "https://github.com/nybex/NYHDKey"
s.license = 'MIT'
s.author = { "Jud" => "[email protected]" }
s.source = { :git => "https://github.com/nybex/NYHDKey.git", :tag => "v#{s.version.to_s}" }
s.social_media_url = 'https://twitter.com/JudStephenson'
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'NYHDKey/Classes'
s.public_header_files = 'NYHDKey/Classes/**/*.h'
s.frameworks = 'Security'
s.dependency 'CoreBitcoin'
end