-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathKActionMenu.podspec
More file actions
29 lines (25 loc) · 869 Bytes
/
KActionMenu.podspec
File metadata and controls
29 lines (25 loc) · 869 Bytes
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
28
29
Pod::Spec.new do |s|
s.name = "KActionMenu"
s.version = "1.0"
s.summary = "Like to iOS 3D touch menu"
s.description = <<-DESC
Like to iOS 3D touch menu
DESC
s.homepage = "https://github.com/KenanAtmaca/KActionMenu"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "KenanAtmaca" => "mail.kenanatmaca@gmail.com" }
s.social_media_url = "https://twitter.com/uikenan"
s.platform = :ios, "11.0"
s.requires_arc = true
s.ios.deployment_target = "11.0"
s.source = { :git => "https://github.com/KenanAtmaca/KActionMenu", :tag => "#{s.version}" }
s.source_files = "KActionMenu", "KActionMenu/**/*.{h,m,swift}"
s.resources = "KActionMenu/**/*.{xib,png}"
s.resource_bundles = {
'KActionMenu' => [
'KActionMenu/**/*.{xib,png}'
]
}
s.swift_version = '4.2'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2'}
end