- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckmarkView-iOS.podspec
More file actions
Latest commit
19 lines (18 loc) · 679 Bytes
/
Copy pathCheckmarkView-iOS.podspec
File metadata and controls
19 lines (18 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.newdo |s|
s.name='CheckmarkView-iOS'
s.version='0.0.3'
s.license={:type=>"MIT",:file=>"LICENSE"}
s.summary='Pixel perfect checkmark view for iOS'
s.homepage='https://beewisedevelopment.com'
s.social_media_url='https://beewisedevelopment.com'
s.authors={"Bee Wise Development"=>"bee.wise.development@gmail.com"}
s.source={:git=>"https://github.com/BeeWise/CheckmarkView-iOS.git",:tag=>s.version.to_s}
s.platforms={:ios=>"11.0"}
s.requires_arc=true
s.swift_versions=['5.0']
s.default_subspec="Core"
s.subspec"Core"do |ss|
ss.source_files="Sources/**/*.swift"
ss.framework="Foundation"
end
end