- Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathBOString.podspec
More file actions
Latest commit
18 lines (15 loc) · 719 Bytes
/
Copy pathBOString.podspec
File metadata and controls
18 lines (15 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.newdo |s|
s.name="BOString"
s.version="0.10.1"
s.summary="Create NSAttributedString like a boss!"
s.homepage="https://github.com/kovpas/BOString"
s.author={"Pavel Mazurin"=>"kovpas@gmail.com"}
s.source={:git=>"https://github.com/kovpas/BOString.git",:tag=>s.version.to_s}
s.license='MIT'
s.source_files='BOString/*.{h,m}'
s.ios.deployment_target='6.0'# should be fine with ios 5 and 4. Can anyone test? :)
s.osx.deployment_target='10.9'# should be fine on earlier versions. Can anyone test? :)
s.ios.frameworks='Foundation','UIKit'
s.osx.frameworks='Foundation','AppKit'
s.requires_arc=true
end