-
Notifications
You must be signed in to change notification settings - Fork 0
/
AdaptiveTabBarController.podspec
24 lines (24 loc) · 1.35 KB
/
AdaptiveTabBarController.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
Pod::Spec.new do |s|
s.name = 'AdaptiveTabBarController'
s.version = '3.1.0'
s.summary = 'A UITabBarController replacement with support for floating action button and adaptivity between trait environments on iOS, written in Swift.'
s.description = <<-DESC
The AdaptiveTabBarController is an adaptive view controller that can be installed as
the root view controller of your application. It provides adaptivity between compact
and regular trait environments (e.g. split screen or rotation changes on iPad) as well
as a floating action button which can have actions presented from it when tapped. It
uses the built in UITabBarController while in a compact trait environment and a custom
built "vertical" tab bar controller while in a regular trait environment.
DESC
s.homepage = 'https://github.com/cgossain/AdaptiveTabBarController'
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { 'cgossain' => 'cgossain@gmail.com' }
s.source = { git: 'https://github.com/cgossain/AdaptiveTabBarController.git', tag: s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '15.0'
s.source_files = 'Sources/AdaptiveTabBarController/**/*'
s.resource_bundles = {
'LibAssets' => ['Sources/AdaptiveTabBarController/Assets/**/*']
}
s.frameworks = 'UIKit'
end