-
Notifications
You must be signed in to change notification settings - Fork 11
/
GTToast.podspec
27 lines (22 loc) · 1.17 KB
/
GTToast.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
#
# Be sure to run `pod lib lint GTToast.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "GTToast"
s.version = "0.3.0"
s.summary = "GTToast is a library written in Swift which allows toast notifcations to be displayed. You can create toasts with text and/or images."
s.description = "GTToast is a library written in Swift which allows toast notifcations to be displayed. You can create toasts with text and/or images. There are many options available to allow you to adapt look and feel of the toast messages to your app."
s.homepage = "https://github.com/gregttn/GTToast"
s.license = 'MIT'
s.author = { "gregttn" => "[email protected]" }
s.source = { :git => "https://github.com/gregttn/GTToast.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/gregttn'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'UIKit'
end