forked from tbaranes/VersionTrackerSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VersionTrackerSwift.podspec
25 lines (19 loc) · 1.26 KB
/
VersionTrackerSwift.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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "VersionTrackerSwift"
s.module_name = "VersionTracker"
s.version = "3.0.0"
s.summary = "Versions tracker for your iOS, macOS, and tvOS app"
s.description = "Versions / builds tracker for your iOS, macOS, and tvOS app. Also useful to get information such as versions / builds history..."
s.homepage = "https://github.com/tbaranes/VersionTrackerSwift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Tom Baranes" => "[email protected]" }
s.source = { :git => "https://github.com/tbaranes/VersionTrackerSwift.git", :tag => "#{s.version}" }
# ――― Spec tech ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = 'Sources/*.swift'
end