forked from Nightonke/VHBoomMenuButton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVHBoomMenuButton.podspec
27 lines (23 loc) · 924 Bytes
/
VHBoomMenuButton.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
Pod::Spec.new do |s|
s.name = 'VHBoomMenuButton'
s.version = '2.0.0'
s.summary = 'A menu which can ... BOOM!'
s.description = <<-DESC
This is a menu-button whose sub buttons will boom to show.
DESC
s.homepage = 'https://github.com/Nightonke/VHBoomMenuButton'
s.license = 'MIT'
s.author = { 'Nightonke' => "[email protected]" }
s.source = { :git => 'https://github.com/Nightonke/VHBoomMenuButton.git', :tag => '2.0.0' }
s.platform = :ios, '8.0'
s.requires_arc = true
s.default_subspec = 'ObjC'
s.subspec 'ObjC' do |ss|
ss.ios.deployment_target = '8.0'
ss.source_files = 'VHBoomMenuButton/**/*.{h,m,swift}'
end
s.subspec 'Swift' do |ss|
ss.ios.deployment_target = '8.0'
ss.source_files = 'VHBoomMenuButtonSwift/**/*.{h,m,swift}'
end
end