-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathJLTMDbClient.podspec
More file actions
15 lines (15 loc) · 866 Bytes
/
JLTMDbClient.podspec
File metadata and controls
15 lines (15 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "JLTMDbClient"
s.version = "0.3.0"
s.summary = "JLTMDbClient is an iOS wrapper on top of AFNetworking to interact with www.themoviedb.org API"
s.homepage = "https://github.com/JaviLorbada/JLTMDbClient"
s.screenshots = "https://dl.dropboxusercontent.com/u/27371680/Images/Github/JLTMDbClient/MovieList.png", "https://dl.dropboxusercontent.com/u/27371680/Images/Github/JLTMDbClient/MovieDetail.png"
s.license = 'MIT'
s.author = { "JaviLorbada" => "javugi@gmail.com" }
s.source = { :git => "https://github.com/JaviLorbada/JLTMDbClient.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/Javi_Lorbada'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'JLTMDbClient', 'JLTMDbClient/**/*.{h,m}'
s.dependency 'AFNetworking', '~> 3.0'
end