-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathReleaseRadar.podspec
More file actions
20 lines (17 loc) · 904 Bytes
/
Copy pathReleaseRadar.podspec
File metadata and controls
20 lines (17 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "ReleaseRadar"
s.version = "0.2.2"
s.homepage = "https://github.com/halcyonmobile/ReleaseRadar"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Botond Magyarosi"
s.summary = "Lightweight framework to check release notes after an iOS app update is performed."
s.description = <<-DESC
With iOS 7, automatic app updates were introduced making App Store release notes less relevant for the end user.
Other frameworks like Siren check for available updates, ReleaseRadar checks for release notes after an update was performed.
DESC
s.swift_version = "4.2"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/halcyonmobile/ReleaseRadar.git", :tag => "v#{s.version}" }
s.source_files = "Sources/**/*.swift"
s.exclude_files = "Sources/Example/*.swift"
end