-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
SwiftyInsta.podspec
28 lines (22 loc) · 942 Bytes
/
SwiftyInsta.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
Pod::Spec.new do |s|
s.name = "SwiftyInsta"
s.version = "2.6.0"
s.summary = "Private and Tokenless Instagram RESTful API."
s.homepage = "https://github.com/TheM4hd1/SwiftyInsta"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "TheM4HD1" => "[email protected]" }
s.module_name = "SwiftyInsta"
s.swift_version = "5.0"
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.14"
s.watchos.deployment_target = "5.0"
s.tvos.deployment_target = "12.0"
s.source = { :git => "https://github.com/TheM4hd1/SwiftyInsta.git", :tag => "#{s.version}" }
s.source_files = "SwiftyInsta/**/*.{h,m,swift}"
s.ios.frameworks = 'UIKit', 'WebKit'
s.macos.frameworks = 'AppKit', 'WebKit'
s.tvos.frameworks = 'UIKit', 'WebKit'
s.watchos.frameworks = 'UIKit', 'WebKit"
s.dependency "CryptoSwift", "~> 1.3"
s.dependency "KeychainSwift", "~> 19.0"
end