-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlexibleModelProtocol.podspec
More file actions
28 lines (19 loc) · 911 Bytes
/
Copy pathFlexibleModelProtocol.podspec
File metadata and controls
28 lines (19 loc) · 911 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
Pod::Spec.new do |spec|
spec.name = "FlexibleModelProtocol"
spec.version = "1.1.6"
spec.license = 'MIT'
spec.summary = "Model protocol with flexible, diverse types of conversion"
spec.homepage = "https://github.com/HanweeeeLee/FlexibleModelProtocol"
spec.author = { "hanwe lee" => "mobiledev@kakao.com" }
spec.source = { :git => "https://github.com/HanweeeeLee/FlexibleModelProtocol.git", :tag => "1.1.6" }
spec.platform = :ios, "11.0"
spec.osx.deployment_target = '10.13'
spec.tvos.deployment_target = '13.0'
spec.watchos.deployment_target = '6.0'
spec.swift_version = '5.0'
spec.source_files = 'FlexibleModelProtocol/FlexibleModelProtocol/*.{h,m,swift}'
spec.description = <<-DESC
Navigation view whose shape changes depending on the scroll position
DESC
spec.exclude_files = "Classes/Exclude"
end