-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCardTabBar.podspec
25 lines (21 loc) · 1.03 KB
/
CardTabBar.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
#
# Be sure to run `pod lib lint CardTabBar.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 https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'CardTabBar'
s.version = '1.0.0'
s.summary = 'This library is for adding animation to iOS tabbar items, which is inherited from UITabBarController.'
s.homepage = 'https://github.com/yusadogru/CardTabBar'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'yusadogru' => '[email protected]' }
s.source = { :git => 'https://github.com/yusadogru/CardTabBar.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/yusadogru'
s.ios.deployment_target = '13.0'
s.source_files = "Sources/**/*.{h,m,strings,swift}"
s.resources = "Sources/**/*.{xcassets,png,json}"
s.resource_bundle = { 'CardTabBar' => ['Sources/**/*.{xcassets}'] }
end