This repository has been archived by the owner on Aug 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
VimeoNetworking.podspec
45 lines (35 loc) · 2.05 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
37
38
39
40
41
42
43
44
45
Pod::Spec.new do |s|
s.name = "VimeoNetworking"
s.version = "5.0.0"
s.summary = "A library for interacting with the Vimeo API."
s.description = "An iOS/tvOS library for interacting with the Vimeo API."
s.homepage = "https://github.com/vimeo/VimeoNetworking"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Gavin King" => "[email protected]",
"Nicole Lehrer" => "[email protected]",
"Mike Westendorf" => "[email protected]",
"Jason Hawkins" => "[email protected]",
"Jennifer Lim" => "[email protected]",
"Van Nguyen" => "[email protected]",
"Freddy Kellison-Linn" => "[email protected]>"}
s.social_media_url = "http://twitter.com/vimeo"
s.ios.deployment_target = "10.3"
s.tvos.deployment_target = "10.0"
s.osx.deployment_target = "10.11"
s.source = { :git => "https://github.com/vimeo/VimeoNetworking.git", :tag => s.version.to_s }
s.source_files = "Sources/Shared/**/*.{h,m,swift}"
s.ios.source_files = "Sources/iOS/**/*.{h,m,swift}", "Sources/iOS+tvOS/**/*.{h,m,swift}"
s.tvos.source_files = "Sources/tvOS/**/*.{h,m,swift}", "Sources/iOS+tvOS/**/*.{h,m,swift}"
s.osx.source_files = "Sources/macOS/**/*.{h,m,swift}"
s.swift_version = "5.1"
s.resources = "Sources/Resources/**/*.*"
s.frameworks = "Foundation"
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = "Tests/Shared/**/*.{h,m,swift}"
test_spec.ios.source_files = "Tests/iOS/**/*.{h,m,swift}"
test_spec.tvos.source_files = "Tests/tvOS/**/*.{h,m,swift}"
test_spec.osx.source_files = "Tests/macOS/**/*.{h,m,swift}"
test_spec.resources = "Tests/Fixtures/**/*.*"
test_spec.dependency 'OHHTTPStubs/Swift', '8.0.0'
end
end