forked from ezodude/ShareThis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShareThis.podspec
28 lines (26 loc) · 1.24 KB
/
ShareThis.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
Pod::Spec.new do |s|
s.name = 'ShareThis'
s.version = '1.0.4'
s.platform = :ios, '5.0'
s.license = { :type => 'BSD'}
s.summary = 'An iOS sharing tool that can be easily inserted into a project.'
s.homepage = 'https://github.com/ign/ShareThis'
s.author = { 'Aung Thar' => '[email protected]',
'Grant Bartone' => '[email protected]',
'Alex Ivlev' => '[email protected]',
'Brad Taylor' => '[email protected]' }
s.source = { :git => 'https://github.com/ign/ShareThis.git', :tag => '1.0.4' }
s.description = 'A sharing controller that allows anyone to implement '\
'sharing into their projects easily. iOS 5 will use action '\
'sheets and iOS 6 will use the new activity view '\
'controller. Readability, Pocket, and Instapaper are added '\
'also for read-later services to share with articles.'
s.source_files = 'Code/*.{h,m}', 'Code/KeyChainItemWrapper/*.{h,m}'
s.resources = 'Assets/*.png'
s.dependency 'Facebook-iOS-SDK', '3.1.1'
s.dependency 'REComposeViewController', '0.0.1'
s.dependency 'cocoa-oauth', '0.0.1'
s.frameworks = 'Security', 'QuartzCore', 'MessageUI', 'Twitter', 'CoreGraphics'
s.weak_frameworks = 'Social', 'Accounts', 'AdSupport'
s.requires_arc = true
end