-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSKNotification.podspec
32 lines (27 loc) · 1.21 KB
/
SKNotification.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
32
Pod::Spec.new do |s|
s.name = "SKNotification"
s.version = "1.6"
s.summary = "Nice and easy unobtrusive notifications."
s.description = <<-DESC
Nice and easy customisable unobtrusive in-app notifications.
Customisation:
* Autoresizing for large text
* Colours and icons for various statuses (e.g. Alert, Failure)
* Tint icons
* Notification without icon
* Custom fonts supported
* Translucent notifications supported
* Multiple notifications on one screen
* Colorized shadow
* Custom animations
* Cancelation blocks
DESC
s.homepage = "https://github.com/SandorUK/SKNotification"
s.license = {:type => 'MIT', :file => 'LICENSE'}
s.author = { "Sandor Kolotenko" => "[email protected]" }
s.homepage = 'http://isandor.com/open-source/sknotification-cocoapod'
s.platform = :ios
s.source = { :git => "https://github.com/SandorUK/SKNotification.git", :tag => "1.6" }
s.source_files = "SKNotification/Classes", "SKNotification/Classes/**/*.{h,m}"
s.requires_arc = true
end