forked from evgenyneu/Dodo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dodo.podspec
22 lines (21 loc) · 1.26 KB
/
Dodo.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Dodo"
s.version = "2.0.13"
s.license = { :type => "MIT" }
s.homepage = "https://github.com/marketplacer/Dodo"
s.summary = "A message bar written in Swift."
s.description = <<-DESC
This is a UI widget for showing text messages in iOS apps. It is useful for showing short messages to the user, something like: "Message sent", "Note saved", "No Internet connection".
* Dodo includes styles for success, info, warning and error type messages.
* The bar can have buttons with custom tap handlers.
* Bar styles can be customized.
* You can provide custom animations for showing and hiding the bar or use one of the default animation presets.
* Provides a mock class for unit tests.
DESC
s.authors = { "Evgenii Neumerzhitckii" => "[email protected]" }
s.source = { :git => "https://github.com/marketplacer/Dodo.git", :tag => s.version }
s.screenshots = "https://raw.githubusercontent.com/marketplacer/Dodo/master/Graphics/Paintings/alices_adventures_in_wonderland.png"
s.source_files = "Dodo/**/*.swift"
s.resources = "Dodo/**/*.xcassets"
s.ios.deployment_target = "8.0"
end