forked from ricobeck/KFOpenWeatherMapAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKFOpenWeatherMapAPI.podspec
More file actions
26 lines (18 loc) · 890 Bytes
/
KFOpenWeatherMapAPI.podspec
File metadata and controls
26 lines (18 loc) · 890 Bytes
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
Pod::Spec.new do |s|
s.name = "KFOpenWeatherMapAPI"
s.version = "0.2.5"
s.summary = "an OpenWeatherMap API Client"
s.description = <<-DESC
A client connecting to the OpenWeatherMap API for fetching current weather data, interval/daily forecasts, and searching cities.
DESC
s.homepage = "https://github.com/ricobeck/KFOpenWeatherMapAPI"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "rico becker" => "rico.becker@kf-interactive.com" }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.7'
s.source = { :git => "https://github.com/ricobeck/KFOpenWeatherMapAPI.git", :tag => s.version.to_s }
s.source_files = 'KFOpenWeatherMapAPI/Source/**/*.{h,m}'
s.requires_arc = true
s.dependency 'JSONModel', '~> 0.13'
s.dependency 'AFNetworking', '~> 1.0'
end