forked from malcommac/SwiftRichString
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftRichString.podspec
More file actions
18 lines (18 loc) · 810 Bytes
/
SwiftRichString.podspec
File metadata and controls
18 lines (18 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "SwiftRichString"
s.version = "0.9.9"
s.summary = "Elegant Attributed Strings (NSAttributedString) in Swift"
s.homepage = "https://github.com/malcommac/SwiftRichString"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Daniele Margutti" => "me@danielemargutti.com" }
s.social_media_url = "http://twitter.com/danielemargutti"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/malcommac/SwiftRichString.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*.swift"
s.frameworks = "Foundation"
s.requires_arc = true
s.module_name = 'SwiftRichString'
end