-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathAtributika.podspec
19 lines (19 loc) · 1023 Bytes
/
Atributika.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "Atributika"
s.version = "5.0.5"
s.summary = "Convert text with HTML tags, hashtags, mentions, links into NSAttributedString."
s.description = <<-DESC
`Atributika` is an effortless to build NSAttributedString. It is able to detect HTML-like tags, links, phone numbers, hashtags, any regex or even standard ios data detectors and style them with various attributes like font, color, etc.
DESC
s.homepage = "https://github.com/psharanda/Atributika"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Pavel Sharanda" => "[email protected]" }
s.social_media_url = "https://twitter.com/psharanda"
s.swift_version = '5.1'
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.13"
s.watchos.deployment_target = "4.0"
s.tvos.deployment_target = "11.0"
s.source = { :git => "https://github.com/psharanda/Atributika.git", :tag => s.version.to_s }
s.source_files = "Sources/Core/**/*.swift"
end