-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOctoAPI.podspec
More file actions
28 lines (24 loc) · 1.05 KB
/
OctoAPI.podspec
File metadata and controls
28 lines (24 loc) · 1.05 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
28
#
# Be sure to run `pod spec lint OctoAPI.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "OctoAPI"
s.version = "0.5.2"
s.summary = "Octo is a JSON API abstraction layer built on top of Alamofire for your iOS projects written in Swift 3+"
s.homepage = "http://ferus.info"
s.license = "MIT"
s.author = { "Maciej Kołek" => "hello@ferus.info" }
s.social_media_url = "http://twitter.com/ferusinfo"
s.platform = :ios, "10.0"
s.swift_version = "4.2"
s.source = { :git => "https://github.com/ferusinfo/OctoAPI.git", :tag => "#{s.version}" }
s.source_files = "Sources/*/*"
s.dependency 'Alamofire', '~> 4.8'
s.dependency 'Gloss', '~> 2.1'
s.dependency 'HTMLString', '~> 4.0'
s.dependency 'KeychainAccess', '~> 3.2'
end