-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathStringBuilder.podspec
More file actions
19 lines (19 loc) · 1012 Bytes
/
Copy pathStringBuilder.podspec
File metadata and controls
19 lines (19 loc) · 1012 Bytes
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 = "StringBuilder"
s.version = "0.1.1"
s.summary = "A simple reimagining of Java's StringBuilder class for Swift"
s.description = <<-DESC
A simple, bare-bones reimagining of Java's StringBuilder class for Swift. This was written in conjunction with [LicensesKit](https://github.com/mattwyskiel/LicensesKit)
DESC
s.homepage = "https://github.com/mattwyskiel/StringBuilder"
s.license = { :type => 'Apache License, Version 2.0', :file => "LICENSE" }
s.author = { "Matthew Wyskiel" => "mwyskiel@optonline.net" }
s.social_media_url = "http://twitter.com/MattWyskiel"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/mattwyskiel/StringBuilder.git", :tag => "#{s.version}" }
s.source_files = "StringBuilder/StringBuilder.swift"
s.framework = "Foundation"
s.requires_arc = true
end