-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathAFWeather.podspec
More file actions
27 lines (16 loc) · 805 Bytes
/
AFWeather.podspec
File metadata and controls
27 lines (16 loc) · 805 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
27
Pod::Spec.new do |s|
s.name = "AFWeather"
s.version = "1.0"
s.summary = "Getting the weather forecast never has been so easy"
s.description = "AFWeather is a Objective-C wrapper for weather forecast that supports 5 services"
s.homepage = "http://www.alvarofranco.me"
s.license = 'MIT'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Alvaro Franco" => "alvarofrancoayala@gmail.com" }
s.social_media_url = "http://twitter.com/alvarofr_"
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/AlvaroFranco/AFWeather.git", :tag => "v1.0" }
s.source_files = 'AFWeather.{h,m}'
s.screenshot = 'https://raw.github.com/AlvaroFranco/AFWeather/master/preview.png'
s.requires_arc = true
end