-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathEVTopTabBar.podspec
More file actions
27 lines (25 loc) · 1.08 KB
/
EVTopTabBar.podspec
File metadata and controls
27 lines (25 loc) · 1.08 KB
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
#
# Be sure to run `pod lib lint EVTopTabBar.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "EVTopTabBar"
s.version = "3.0.0"
s.homepage = 'https://github.com/epv44/EVTopTabBar'
s.author = { 'Eric Vennaro' => 'epv9@case.edu' }
s.summary = "Custom UITabBarController with custom tabs that are at the top of the controller."
s.description = <<-DESC
EVTopTabBar is a custom UIPageViewController for iOS where the page control is at the top.
DESC
s.license = 'MIT'
s.source = { :git => "https://github.com/epv44/EVTopTabBar.git", :tag => s.version.to_s }
s.documentation_url = 'https://epv44.github.io/docs/EVTopTabBar/index.html'
s.platform = :ios, '9.3'
s.swift_version = '5.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'UIKit', 'Foundation'
end