forked from malt03/SwiftString
-
Notifications
You must be signed in to change notification settings - Fork 0
/
String+Extensions.podspec
35 lines (29 loc) · 1.31 KB
/
String+Extensions.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
31
32
33
34
35
#
# Be sure to run `pod lib lint String+Extensions.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'String+Extensions'
s.version = '2.0.5'
s.summary = 'A lightweight string extension for Swift'
s.description = <<-DESC
SwiftString is a lightweight string extension for Swift 3 and 4. This library was motivated by having to search StackOverflow for common string operations, and wanting them to be in one place with test coverage.
Note the original client side Swift 2 repo can be found here: https://github.com/amayne/SwiftString
DESC
s.homepage = 'https://github.com/iamjono/SwiftString'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = {
"Andrew Mayne" => "[email protected]",
"Jonathan Guthrie" => "[email protected]"
}
s.source = { :git => 'https://github.com/daaa57150/SwiftString.git', :branch => 'master' }
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'Sources/**/*'
end