forked from Rightpoint/BonMot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
BonMot.podspec
29 lines (24 loc) · 1.08 KB
/
BonMot.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Pod::Spec.new do |s|
s.name = "BonMot"
s.version = "6.0.0"
s.summary = "Beautiful, easy attributed strings in Swift"
s.swift_versions = ["5.0"]
s.description = <<-DESC
BonMot removes all the mystery from creating beautiful, powerful attributed strings in Swift.
DESC
s.homepage = "https://github.com/Rightpoint/BonMot"
s.license = 'MIT'
s.author = { "Zev Eisenberg" => "zev@zeveisenberg.com" }
s.source = { :git => "https://github.com/Rightpoint/BonMot.git", :tag => s.version.to_s }
# Setting the twitter url is causing builds to fail due to not being able to reach twitter.
# s.social_media_url = 'https://twitter.com/ZevEisenberg'
s.requires_arc = true
s.ios.deployment_target = '11.0'
s.ios.source_files = 'Sources/**/*.swift'
s.tvos.deployment_target = '11.0'
s.tvos.source_files = 'Sources/**/*.swift'
s.osx.deployment_target = '10.11'
s.osx.source_files = 'Sources/*.swift'
s.watchos.deployment_target = '2.2'
s.watchos.source_files = 'Sources/*.swift'
end