-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftSky.podspec
21 lines (19 loc) · 1 KB
/
SwiftSky.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = 'SwiftSky'
spec.version = '1.0.0'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.homepage = 'https://github.com/appcompany/SwiftSky'
spec.social_media_url = 'https://twitter.com/LucaSilverTweet'
spec.authors = { 'Luca Silverentand' => '[email protected]' }
spec.summary = 'A cosy little Swift wrapper around the Dark Sky API'
spec.source = { :git => 'https://github.com/appcompany/SwiftSky.git', :tag => spec.version.to_s }
spec.module_name = 'SwiftSky'
spec.documentation_url = 'https://appcompany.github.io/SwiftSky'
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.10'
spec.watchos.deployment_target = '2.0'
spec.tvos.deployment_target = '9.0'
spec.source_files = 'Source/**/*.swift'
spec.framework = 'Foundation', 'CoreLocation'
spec.dependency 'Alamofire', '~> 4.4'
end