forked from dtrenz/LaunchGate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LaunchGate.podspec
executable file
·31 lines (29 loc) · 1.74 KB
/
LaunchGate.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
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = "LaunchGate"
s.version = "2.0.0"
s.summary = <<-SUMMARY
LaunchGate makes it easy to let users know when an update to your app is available.
SUMMARY
s.description = <<-DESC
LaunchGate makes it easy to let users know when an update
to your app is available.
You can also block access to the app for older versions,
which is useful in the event of a severe bug or security
issue that requires users to update the app.
Additionally, you can use LaunchGate to display a remotely
configured message to users at launch which can also be
used to temporarily block access to the app (i.e. during
back-end maintenance).
DESC
s.homepage = "https://github.com/dtrenz/LaunchGate"
# s.screenshots = "https://github.com/dtrenz/LaunchGate/Docs/Screenshots/required-update.png", "https://github.com/dtrenz/LaunchGate/Docs/Screenshots/optional-update.png", "https://github.com/dtrenz/LaunchGate/Docs/Screenshots/alert-blocking.png", "https://github.com/dtrenz/LaunchGate/Docs/Screenshots/alert-nonblocking.png"
s.license = 'Apache 2.0'
s.author = { "Dan Trenz" => "[email protected]" }
s.source = { :git => "https://github.com/dtrenz/LaunchGate.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/dtrenz'
s.platform = :ios, '10.0'
s.requires_arc = true
s.source_files = 'Source/**/*.swift'
s.frameworks = 'UIKit'
s.swift_version = '5.1'
end