-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNGSBadgeBarButton.podspec
24 lines (19 loc) · 1005 Bytes
/
NGSBadgeBarButton.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
_release = "1.3"
_build = "0"
_version = _release + "." + _build #e.x. 1.2.3
_tag = "R" + _release + "/" + _version #e.x. R1.2/1.2.3
Pod::Spec.new do |s|
s.name = 'NGSBadgeBarButton'
s.version = _version
s.swift_version = '5.0'
s.summary = 'UIBarButton with red badge in corner'
s.description = 'UIBarButton subclass to provide option to set red badge on its corner. AutoLayout in action'
s.homepage = 'https://github.com/PauliusVindzigelskis/NGSBadgeBarButton'
s.screenshot = 'https://user-images.githubusercontent.com/2383901/36121468-e32e9756-100b-11e8-9e64-ddcd0d6e8514.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Paulius Vindzigelskis' => '[email protected]' }
s.source = { :git => 'https://github.com/PauliusVindzigelskis/NGSBadgeBarButton.git', :tag => _tag }
s.ios.deployment_target = '9.0'
s.source_files = 'Pod/*.{swift}'
s.frameworks = 'UIKit'
end