-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathStryng.podspec
19 lines (19 loc) · 885 Bytes
/
Stryng.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 = "Stryng"
s.version = "0.4"
s.summary = "Stop crying when accessing Swift Strings."
s.description = <<-DESC
Stryng is designed to make it easier to work with strings by using the common and easy to remember subscript syntax and accessing characters and ranges with Int indices.
DESC
s.homepage = "/~https://github.com/BalestraPatrick/Stryng"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Patrick Balestra" => "me@patrickbalestra.com" }
s.social_media_url = ""
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "/~https://github.com/BalestraPatrick/Stryng.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation"
end