-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDSToast.podspec
31 lines (26 loc) · 1.14 KB
/
DSToast.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
#
# Be sure to run `pod spec lint DSToast.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "DSToast"
s.version = "1.1.4"
s.summary = "A toast used on iOS."
s.description = <<-DESC
It is a toast used on iOS, which implement by Objective-C.
* Markdown format.
* Don't worry about the indent, we strip it!
DESC
s.homepage = "http://linfeng1009.gitcafe.io"
s.license = 'MIT'
s.author = { "大神" => "[email protected]" }
s.source = { :git => "https://github.com/ludaye123/DSToast.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.source_files = 'DSToast/*'
s.frameworks = 'Foundation', 'UIKit'
end