- Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathVersion.podspec
More file actions
Latest commit
28 lines (26 loc) · 1.17 KB
/
Copy pathVersion.podspec
File metadata and controls
28 lines (26 loc) · 1.17 KB
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
Pod::Spec.newdo |s|
s.name="Version"
s.version="0.8.0"
s.summary="Version represents and compares semantic versions in Swift."
s.description=<<-DESC
Version is a Swift Library, which enables to represent and compare semantic version numbers.
It follows [Semantic Versioning 2.0.0](http://semver.org).
The representation is:
* Comparable
* Equatable
* String Literal Convertible
* Printable
DESC
s.homepage="https://github.com/mrackwitz/Version"
s.license='MIT'
s.author={"Marius Rackwitz"=>"git@mariusrackwitz.de"}
s.source={:git=>"https://github.com/mrackwitz/Version.git",:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/mrackwitz'
s.swift_version='5.0'
s.ios.deployment_target='9.0'
s.osx.deployment_target='10.10'
s.watchos.deployment_target='2.0'
s.tvos.deployment_target='9.0'
s.requires_arc=true
s.source_files="Sources/**/*.{swift}"
end