forked from tumblr/TMTumblrSDK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTMTumblrSDK.podspec.json
81 lines (79 loc) · 1.64 KB
/
TMTumblrSDK.podspec.json
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "TMTumblrSDK",
"version": "2.2.0",
"summary": "An unopinionated and flexible library for easily integrating Tumblr data into your iOS or OS X application.",
"authors": {
"Bryan Irace": "[email protected]"
},
"homepage": "http://tumblr.github.com/TMTumblrSDK",
"license": {
"type": "Apache 2.0",
"file": "LICENSE"
},
"source": {
"git": "https://github.com/tumblr/TMTumblrSDK.git",
"tag": "2.2.0"
},
"requires_arc": true,
"platforms": {
"ios": "5.0",
"osx": "10.7"
},
"frameworks": "Foundation",
"ios": {
"weak_frameworks": "UIKit"
},
"osx": {
"weak_frameworks": "AppKit"
},
"subspecs": [
{
"name": "Core",
"source_files": "TMTumblrSDK/Core",
"dependencies": {
"Spectacles": [
"~> 1.0"
]
},
"resources": "TMTumblrSDK.podspec.json"
},
{
"name": "Activity",
"platforms": {
"ios": "5.0"
},
"source_files": "TMTumblrSDK/Activity",
"resources": "TMTumblrSDK/Activity/*.{png}"
},
{
"name": "APIClient",
"source_files": "TMTumblrSDK/APIClient",
"dependencies": {
"JXHTTP": [
"~> 2.0.1"
]
},
"subspecs": [
{
"name": "Authentication",
"source_files": "TMTumblrSDK/Authentication",
"dependencies": {
"TMTumblrSDK/Core": [
]
}
}
]
},
{
"name": "AppClient",
"platforms": {
"ios": "5.0"
},
"source_files": "TMTumblrSDK/AppClient",
"dependencies": {
"TMTumblrSDK/Core": [
]
}
}
]
}