forked from overshare/overshare-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOvershareKit.podspec
More file actions
22 lines (18 loc) · 817 Bytes
/
OvershareKit.podspec
File metadata and controls
22 lines (18 loc) · 817 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 = "OvershareKit"
s.version = "1.0.6.1"
s.summary = "A soup-to-nuts sharing library for iOS."
s.homepage = "https://github.com/overshare/overshare-kit"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Jared Sinclair" => "desk@jaredsinclair.com", "Justin Williams" => "justin@carpeaqua.com" }
s.source = { :git => "https://github.com/overshare/overshare-kit.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.frameworks = 'UIKit'
s.compiler_flags = "-fmodules"
s.ios.deployment_target = '7.0'
s.source_files = ['Overshare Kit/*.{h,m}']
s.resources = ['Overshare Kit/Images/*', 'Overshare Kit/*.xib']
s.dependency 'ADNLogin'
s.dependency 'PocketAPI'
end