-
Notifications
You must be signed in to change notification settings - Fork 50
/
StatusAlert.podspec
19 lines (18 loc) · 1.09 KB
/
StatusAlert.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'StatusAlert'
s.version = '1.1.1'
s.summary = 'Display Apple system-like status alerts for iOS'
s.description = <<-DESC
StatusAlert is an iOS framework that displays status alerts similar to Apple's system self-hiding alerts. It is well suited for notifying user without interrupting user flow in iOS-like way.
It looks very similar to the alerts displayed in Podcasts, Apple Music and News apps.
DESC
s.homepage = 'https://github.com/LowKostKustomz/StatusAlert'
s.screenshots = 'https://raw.githubusercontent.com/LowKostKustomz/StatusAlert/master/Assets/iPhonesWithStatusAlert.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'LowKostKustomz' => '[email protected]' }
s.source = { :git => 'https://github.com/LowKostKustomz/StatusAlert.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/LowKostKustomz'
s.ios.deployment_target = '9.0'
s.source_files = 'Sources/**/*.{swift}'
s.frameworks = 'UIKit'
end