forked from henrik-dmg/HPOpenWeather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HPOpenWeather.podspec
32 lines (23 loc) · 939 Bytes
/
HPOpenWeather.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
31
32
Pod::Spec.new do |s|
s.name = "HPOpenWeather"
s.version = "3.5.0"
s.summary = "Cross-platform framework to communicate with the OpenWeatherMap JSON API"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.homepage = "https://panhans.dev/hpopenweather"
s.author = { "henrik-dmg" => "[email protected]" }
s.social_media_url = "https://twitter.com/henrik_dmg"
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
s.watchos.deployment_target = "3.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => 'https://github.com/henrik-dmg/HPOpenWeather.git', :tag => s.version }
s.source_files = "Sources/**/*.swift"
s.framework = "Foundation"
s.ios.framework = "UIKit"
s.watchos.framework = "UIKit"
s.tvos.framework = "UIKit"
s.osx.framework = "AppKit"
s.swift_version = "5.0"
s.requires_arc = true
s.dependency "HPNetwork"
end