forked from 52inc/Pulley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pulley.podspec
42 lines (33 loc) · 1.56 KB
/
Pulley.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#
# Be sure to run `pod lib lint Pulley.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Pulley'
s.version = '2.0.1'
s.summary = 'A library to imitate the iOS 10 Maps UI.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
A library to provide a drawer controller that can imitate the drawer UI in iOS 10's Maps app.
DESC
s.homepage = 'https://github.com/52inc/Pulley'
s.screenshots = 'https://camo.githubusercontent.com/ffa1a97f8e152bb25f69970a08aa2e827fe54ce0/687474703a2f2f692e696d6775722e636f6d2f35616b456a69542e676966'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Brendan Lee' => '[email protected]' }
s.source = { :git => 'https://github.com/52inc/Pulley.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/52_inc'
s.ios.deployment_target = '9.0'
s.source_files = 'PulleyLib/*.{h,swift}'
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit'
s.xcconfig = {
'SWIFT_VERSION' => '4.0'
}
end