forked from Rightpoint/BonMot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BonMot.podspec
28 lines (23 loc) · 1010 Bytes
/
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
Pod::Spec.new do |s|
s.name = "BonMot"
s.version = "5.0.1"
s.summary = "Beautiful, easy attributed strings in Swift"
s.swift_version = "4.0"
s.description = <<-DESC
BonMot removes all the mystery from creating beautiful, powerful attributed strings in Swift.
DESC
s.homepage = "https://github.com/Raizlabs/BonMot"
s.license = 'MIT'
s.author = { "Zev Eisenberg" => "[email protected]" }
s.source = { :git => "https://github.com/Raizlabs/BonMot.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ZevEisenberg'
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.ios.source_files = 'Sources/**/*.swift'
s.tvos.deployment_target = '9.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