forked from eddiekaiger/SwiftyAttributes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftyAttributes.podspec
30 lines (21 loc) · 1 KB
/
SwiftyAttributes.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
30
Pod::Spec.new do |s|
s.name = "SwiftyAttributes"
s.version = "5.2.0"
s.summary = "A Swifty API for attributed strings."
s.description = <<-DESC
SwiftyAttributes provides a clean, Swifty API for dealing with NSAttributedStrings.
DESC
s.homepage = "https://github.com/eddiekaiger/SwiftyAttributes"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Eddie Kaiger" => "[email protected]" }
s.source = { :git => "https://github.com/eddiekaiger/SwiftyAttributes.git", :tag => "v" + s.version.to_s }
s.source_files = "SwiftyAttributes/Sources/common/*.swift"
s.ios.source_files = "SwiftyAttributes/Sources/iOS_tvOS/*.swift"
s.tvos.source_files = "SwiftyAttributes/Sources/iOS_tvOS/*.swift"
s.osx.source_files = "SwiftyAttributes/Sources/macOS/*.swift"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.swift_versions = ['5.0', '5.1']
end