-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBitfinexSwiftAPI.podspec
More file actions
23 lines (19 loc) · 879 Bytes
/
Copy pathBitfinexSwiftAPI.podspec
File metadata and controls
23 lines (19 loc) · 879 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 = "BitfinexSwiftAPI"
s.version = "0.2.1"
s.summary = "BitfinexSwiftAPI provides API access to bitfinex.com"
s.description = <<-DESC
BitfinexSwiftAPI library
DESC
s.homepage = "https://DarthRamone@bitbucket.org/DarthRamone/bitfinexswiftapi.git"
s.license = 'MIT'
s.author = { "Alexander Moshkin" => "moshkin_alexander@outlook.com" }
s.source = { :git => "https://DarthRamone@bitbucket.org/DarthRamone/bitfinexswiftapi.git", :tag => s.version.to_s }
s.requires_arc = true
s.osx.deployment_target = "10.8"
s.source_files = "BitfinexSwiftAPI/*.{swift}"
s.dependency 'SwiftyJSON', '~> 2.3'
s.dependency 'Alamofire', '~> 3.0'
s.dependency 'CryptoSwift', '~> 0.1'
s.dependency 'Starscream', '~> 1.0.0'
end