-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathHWToast.podspec
More file actions
21 lines (20 loc) · 1.87 KB
/
HWToast.podspec
File metadata and controls
21 lines (20 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "HWToast"
s.version = "0.9"
s.summary = "Show a toast with custom views in a flexible way."
s.description = "HWToast can display a toast with custom views in a flexible way. You can make a toast easily in a block."
s.homepage = "https://github.com/ChatGame/HWToast"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "callmewhy" => "https://github.com/callmewhy" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "7.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/ChatGame/HWToast.git", :tag => "0.9" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "Classes/**/*.{h,m}"
s.resource = "Classes/HWToastImage.bundle"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
end