forked from dtrotzjr/MessageBanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MessageBanner.podspec
43 lines (33 loc) · 2.22 KB
/
MessageBanner.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
33
34
35
36
37
38
39
40
41
42
43
#
# Be sure to run `pod lib lint MessageBanner.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "MessageBanner"
s.version = "1.0.6"
s.summary = "iOS Notification / Message easy to use and fully customisable"
s.description = <<-DESC
This library provides an **easy to use and fully customizable class to show notifications** views on top/bottom/center of the screen.
The messages banners are regrouped in 4 different type : **Error**, **Warning**, **Message** and **Success**.
Each different type of banner can have different and fully customizable appearance and behavior. (See configuration section)
Each banner can show a **title**, a **subtitle**, an **image** and a **button**.
DESC
s.homepage = "https://github.com/Loadex/MessageBanner"
s.screenshots = "https://raw.githubusercontent.com/Loadex/MessageBanner/master/Screenshots/MessageBannerErrorType.png", "https://raw.githubusercontent.com/Loadex/MessageBanner/master/Screenshots/MessageBannerWarningType.png" , "https://raw.githubusercontent.com/Loadex/MessageBanner/master/Screenshots/MessageBannerMessageType.png" , "https://raw.githubusercontent.com/Loadex/MessageBanner/master/Screenshots/MessageBannerSuccessType.png"
s.license = 'MIT'
s.author = { "Thibault Carpentier" => "carpen_t@epitech.eu" }
s.source = { :git => "https://github.com/Loadex/MessageBanner.git", :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'MessageBanner/Classes/**/*.{h,m}', 'MessageBanner/Views/**/*.{h,m}'
s.resources = 'MessageBanner/Ressources/**/*.{png,json}'
s.public_header_files = 'MessageBanner/Classes/**/*.{h}', 'MessageBanner/Views/**/*.{h}'
# s.frameworks = 'UIKit', 'MapKit'
s.dependency 'HexColors', '~> 2.3.0'
s.dependency 'FXBlurView', '~> 1.6.1'
end