forked from marciliojrs/TTGSnackbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TTGSnackbar.podspec
24 lines (20 loc) · 1.06 KB
/
TTGSnackbar.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
Pod::Spec.new do |s|
s.name = "TTGSnackbar"
s.module_name = "TTGSnackbar"
s.version = "1.0.0"
s.summary = "A Swift based implementation of the Android Snackbar for iOS. Show simple message and action button like a Toast."
s.description = <<-DESC
TTGSnackbar is useful for showing a brief message at the bottom of the screen with an action button.
It appears above all other elements on screen and only one can be displayed at a time.
It disappears after a timeout or after user click the action button.
DESC
s.homepage = "https://github.com/zekunyan/TTGSnackbar"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "zekunyan" => "zekunyan@163.com" }
s.social_media_url = "http://tutuge.me"
s.platform = :ios, "8.0"
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/zekunyan/TTGSnackbar.git", :tag => s.version.to_s }
s.source_files = "TTGSnackbar/**/*.{h,swift}"
s.requires_arc = true
end