forked from teodorpatras/EasyTipView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEasyTipView.podspec
More file actions
17 lines (14 loc) · 818 Bytes
/
EasyTipView.podspec
File metadata and controls
17 lines (14 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'EasyTipView'
s.version = '0.1.4'
s.license = 'MIT'
s.summary = 'Elegant tooltip view written in Swift'
s.description = 'EasyTipView is a custom tooltip view written in Swift that can be used as a call to action or informative tip. It can be presented for any UIBarButtonItem or UIView subclass. In addition it handles automatically orientation changes and will always point to the correct view or item.'
s.homepage = 'https://github.com/teodorpatras/EasyTipView'
s.social_media_url = 'http://twitter.com/teodorpatras'
s.authors = { 'Teodor Patraș' => 'me@teodorpatras.com' }
s.source = { :git => 'https://github.com/teodorpatras/EasyTipView.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.source_files = 'Source/*.swift'
s.requires_arc = true
end