-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathVersions.podspec
More file actions
23 lines (23 loc) · 767 Bytes
/
Versions.podspec
File metadata and controls
23 lines (23 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "Versions"
s.version = "0.5.0"
s.summary = "Helping you find inner peace when comparing version numbers in Swift."
s.description = <<-DESC
* Helping you find inner peace when comparing version numbers in Swift.
DESC
s.homepage = "https://github.com/zenangst/Versions"
s.license = {
:type => 'MIT',
:file => 'LICENSE.md'
}
s.author = { "Christoffer Winterkvist" => "christoffer@winterkvist.com" }
s.social_media_url = "https://twitter.com/zenangst"
s.platform = :ios, '8.0'
s.source = {
:git => 'https://github.com/zenangst/Versions.git',
:tag => s.version.to_s
}
s.source_files = 'Versions/*.swift'
s.frameworks = 'Foundation'
s.requires_arc = true
end