-
Notifications
You must be signed in to change notification settings - Fork 143
/
SECoreTextView.podspec
20 lines (17 loc) · 967 Bytes
/
SECoreTextView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "SECoreTextView"
s.version = "0.8.5"
s.summary = "Multi-line rich text view library with clickable links, selectable text, embeding images and editing."
s.homepage = "https://github.com/kishikawakatsumi/SECoreTextView"
s.social_media_url = "https://twitter.com/k_katsumi"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "kishikawakatsumi" => "[email protected]" }
s.source = { :git => "https://github.com/kishikawakatsumi/SECoreTextView.git", :tag => "v#{s.version}" }
s.ios.deployment_target = "5.0"
s.ios.frameworks = "QuartzCore", "CoreText"
s.osx.deployment_target = "10.7"
s.osx.frameworks = "ApplicationServices", "CoreText"
s.source_files = "Lib/*"
s.resources = "Resources/SECoreTextView.bundle"
s.requires_arc = true
end