-
Notifications
You must be signed in to change notification settings - Fork 14
/
AMTooltip.podspec
25 lines (18 loc) · 930 Bytes
/
AMTooltip.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
Pod::Spec.new do |s|
s.name = 'AMTooltip'
s.version = '1.0.4'
s.summary = 'Simple library to show tooltip.'
s.description = <<-DESC
simple and easy library to show tooltip.
DESC
s.homepage = 'https://github.com/amirdew/AMTooltip'
s.screenshots = 'https://raw.githubusercontent.com/amirdew/AMTooltip/master/Example/screenshots_1.png', 'https://raw.githubusercontent.com/amirdew/AMTooltip/master/Example/screenshots_2.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'amir khorsandi' => '[email protected]' }
s.source = { :git => 'https://github.com/amirdew/AMTooltip.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'AMTooltip/Classes/**/*'
s.resource_bundles = {
'AMTooltip' => ['AMTooltip/Assets/*.xib']
}
end