-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmartToast.podspec
More file actions
22 lines (17 loc) · 977 Bytes
/
SmartToast.podspec
File metadata and controls
22 lines (17 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'SmartToast'
s.version = '0.1.4'
s.summary = 'Android-like toast with very simple interface.'
s.description = 'iToast is a Swift libaray that adds toast notifications to the UIView object class. It is intended to be simple, lightweight, and easy to use. Most toast notifications can be triggered with a single line of code.'
s.homepage = 'https://github.com/Aamirali86/iToast.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Muhammad Aamir Ali' => 'aamir-muhammad@hotmail.com' }
s.source = { :git => 'https://github.com/Aamirali86/iToast.git', :tag => s.version.to_s }
s.social_media_url = 'http://linkedin.com/in/muhammadaamirali/'
s.ios.deployment_target = '11.0'
s.swift_version = '4.1'
s.source_files = 'SmartToast/Classes/**/*'
# s.resource_bundles = {
# 'SmartToast' => ['SmartToast/Assets/*.png']
# }
end