forked from troystump/LoLAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoLAPI.podspec
More file actions
55 lines (36 loc) · 1.64 KB
/
LoLAPI.podspec
File metadata and controls
55 lines (36 loc) · 1.64 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Pod::Spec.new do |s|
# Metadata
s.name = "LoLAPI"
s.version = "0.1.5"
s.summary = "RESTful Objective-C client for the popular online game \"League of Legends\" by Riot Games."
s.description = <<-DESC
LoLAPI is the most powerful Objective-C RESTful client for the popular online game "League of Legends" by Riot Games. All client responses are fully object mapped, allowing developers to focus on writing their application without the hassle of consuming web services.
DESC
s.license = "Apache License, Version 2.0"
s.author = { "troystump" => "troystump@gmail.com" }
s.homepage = "https://github.com/troystump/LoLAPI"
s.social_media_url = "http://twitter.com/troystump"
s.source = { :git => "https://github.com/troystump/LoLAPI.git", :tag => "v#{s.version}" }
s.source_files = "LoLAPI/Code/**/*.{h,m}"
s.header_mappings_dir = "LoLAPI/Code"
# Platform Specifics
s.ios.deployment_target = "5.0"
s.osx.deployment_target = "10.7"
s.requires_arc = true
# Project linking
s.prefix_header_contents = <<-EOS
#import <Availability.h>
#define _AFNETWORKING_PIN_SSL_CERTIFICATES_
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#import <Security/Security.h>
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#import <Security/Security.h>
#endif
EOS
# Dependencies
s.dependency 'RestKit', '~> 0.27.0'
end