-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathResplendentRestkit.podspec
37 lines (30 loc) · 1.23 KB
/
ResplendentRestkit.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
#
# Be sure to run `pod lib lint ResplendentRestkit.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 = 'ResplendentRestkit'
s.version = '0.2.2'
s.summary = 'A set of of tools to facilitate common Restkit usage.'
s.homepage = 'https://github.com/Resplendent/ResplendentRestkit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = {
'Benjamin Maer' => 'ben@resplendent.co',
'Richard Reitzfeld' => 'richie.reitzfeld@gmail.com'
}
s.source = {
:git => 'https://github.com/Resplendent/ResplendentRestkit.git',
:tag => "v#{s.version.to_s}"
}
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.source_files = 'ResplendentRestkit/Classes/**/*'
s.framework = 'CoreData'
s.framework = 'SystemConfiguration'
s.framework = 'MobileCoreServices'
s.dependency 'ResplendentUtilities', '~> 0.5.0'
s.dependency 'RestKit', '~> 0.27.0'
end