forked from ryangrimm/SLDub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSLDub.podspec
More file actions
15 lines (15 loc) · 723 Bytes
/
SLDub.podspec
File metadata and controls
15 lines (15 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'SLDub'
s.version = '0.1.1'
s.platform = :ios
s.authors = { 'Ryan Grimm' => 'ryan@swelllines.com' }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.requires_arc = true
s.summary = 'A dynamic way of annotating UIViews'
s.description = 'A dynamic way of annotating UIViews. Can be used to make fairly magical help overlays, show annotations on photos and maybe some other stuff too.'
s.source_files = 'SLDub/*'
s.public_header_files = 'SLDub/*.h'
s.homepage = 'https://github.com/ryangrimm/SLDub'
s.source = { :git => 'https://github.com/ryangrimm/SLDub.git', :tag => '0.1' }
s.ios.deployment_target = '7.0'
end