forked from overshare/overshare-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OvershareKit.podspec
24 lines (19 loc) · 1.02 KB
/
OvershareKit.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
Pod::Spec.new do |s|
s.name = "OvershareKit"
s.version = "1.2.0"
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" => "[email protected]", "Justin Williams" => "[email protected]" }
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', 'AddressBook', 'CoreMotion', 'CoreLocation'
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', 'Dependencies/GooglePlus-SDK/GooglePlus.bundle']
s.ios.vendored_frameworks = 'Dependencies/GooglePlus-SDK/GooglePlus.framework', 'Dependencies/GooglePlus-SDK/GoogleOpenSource.framework'
s.dependency 'ADNLogin'
s.dependency 'PocketAPI'
end