-
-
Notifications
You must be signed in to change notification settings - Fork 155
/
Pageboy.podspec
28 lines (19 loc) · 916 Bytes
/
Pageboy.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
Pod::Spec.new do |s|
s.name = "Pageboy"
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.swift_versions = ['5.0']
s.requires_arc = true
s.version = "4.2.0"
s.summary = "A simple, highly informative page view controller."
s.description = <<-DESC
A page view controller that provides simplified data source management, enhanced delegation and other useful features.
DESC
s.homepage = "https://github.com/uias/Pageboy"
s.license = "MIT"
s.author = { "Merrick Sapsford" => "[email protected]" }
s.social_media_url = "https://twitter.com/MerrickSapsford"
s.source = { :git => "https://github.com/uias/Pageboy.git", :tag => s.version.to_s }
s.source_files = "Sources/Pageboy/**/*.{h,m,swift}"
s.resource_bundles = {'Pageboy' => ['Sources/Pageboy/PrivacyInfo.xcprivacy']}
end