forked from vimeo/VimeoNetworking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVimeoNetworking.podspec
36 lines (27 loc) · 1.26 KB
/
VimeoNetworking.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
33
34
35
36
Pod::Spec.new do |s|
s.name = "VimeoNetworking"
s.version = "0.0.1"
s.summary = "Library for interacting with the Vimeo API"
s.description = <<-DESC
An iOS/tvOS library for interacting with the Vimeo API.
DESC
s.homepage = "https://github.com/vimeo/VimeoNetworking"
s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.authors = { "Alfie Hanssen" => "[email protected]",
"Rob Huebner" => "[email protected]",
"Gavin King" => "[email protected]",
"Nicole Lehrer" => "[email protected]"}
s.social_media_url = "http://twitter.com/vimeo"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/vimeo/VimeoNetworking", :tag => s.version.to_s }
s.source_files = "VimeoNetworking/VimeoNetworking/*.{h,m,swift,cer}"
s.exclude_files = "VimeoNetworking/VimeoNetworking/VimeoNetworking.h"
s.frameworks = ["Foundation"]
s.requires_arc = true
s.subspec 'Model' do |ss|
ss.source_files = 'VimeoNetworking/VimeoNetworking/Models'
ss.frameworks = 'Foundation', 'CoreGraphics', 'AVFoundation'
end
s.dependency 'AFNetworking', '3.1.0'
end