[Add] Plotline 4.1.5
[CocoaPods.git] / Specs / 7 / 3 / f / Auth0.iOS / 1.0.0-beta / Auth0.iOS.podspec.json
blobddab3d7706f3f6cdc406cc8fcd1b5c09f903887c
2   "name": "Auth0.iOS",
3   "version": "1.0.0-beta",
4   "summary": "A library that uses Auth0 for Authentication with Native Look & Feel",
5   "description": "[![Auth0](https://i.cloudup.com/1vaSVATKTL.png)](http://auth0.com)\n\nAuth0 is a SaaS that helps you with Authentication and Authorization. You can use Social Providers (Like Facebook, Google, Twitter, etc.), Enterprise Providers (Active Directory, LDap, Windows Azure AD, SAML, etc.) and a Username/Password store which can be saved either by us or by you. We have SDKs for the most common platforms (Ruby, Node, iOS, Angular, etc.) so that with a couple lines of code, you can get the Authentication for your app implemented. Let us worry about Authentication so that you can focus on the core of your business.\n",
6   "homepage": "https://github.com/auth0/Auth0.iOS",
7   "license": "MIT",
8   "authors": [
9     {
10       "Martin Gontovnikas": "gonto@auth0.com"
11     },
12     {
13       "Hernan Zalazar": "hernan.zalazar@gmail.com"
14     }
15   ],
16   "source": {
17     "git": "https://github.com/auth0/Auth0.iOS.git",
18     "tag": "1.0.0-beta"
19   },
20   "social_media_url": "https://twitter.com/authzero",
21   "platforms": {
22     "ios": "7.0"
23   },
24   "requires_arc": true,
25   "dependencies": {
26     "libextobjc": [
27       "~> 0.4"
28     ],
29     "CocoaLumberjack": [
30       "~> 1.9"
31     ]
32   },
33   "default_subspecs": [
34     "UI",
35     "Facebook",
36     "Twitter"
37   ],
38   "prefix_header_contents": "    #import \"A0Logging.h\"\n    #define A0LocalizedString(key) NSLocalizedStringFromTable(key, @\"Auth0\", nil)\n",
39   "subspecs": [
40     {
41       "name": "Core",
42       "public_header_files": [
43         "Pod/Classes/Core/*.h",
44         "Pod/Classes/Provider/*.h"
45       ],
46       "source_files": [
47         "Pod/Classes/Core/*.{h,m}",
48         "Pod/Classes/Provider/*.{h,m}"
49       ],
50       "dependencies": {
51         "AFNetworking": [
52           "~> 2.3"
53         ],
54         "ISO8601DateFormatter": [
55           "~> 0.7"
56         ],
57         "UICKeyChainStore": [
58           "~> 1.0.5"
59         ]
60       }
61     },
62     {
63       "name": "UI",
64       "public_header_files": "Pod/Classes/{UI,Utils}/*.h",
65       "source_files": "Pod/Classes/{UI,Utils}/*.{h,m}",
66       "dependencies": {
67         "Auth0.iOS/Core": [
69         ]
70       },
71       "resources": "Pod/Assets/*.xib",
72       "resource_bundles": {
73         "Auth0": [
74           "Pod/Assets/Images/*.png",
75           "Pod/Assets/*.plist",
76           "Pod/Assets/connections.ttf"
77         ]
78       }
79     },
80     {
81       "name": "Facebook",
82       "public_header_files": "Pod/Classes/Provider/Facebook/*.h",
83       "source_files": "Pod/Classes/Provider/Facebook/*.{h,m}",
84       "dependencies": {
85         "Auth0.iOS/Core": [
87         ],
88         "Facebook-iOS-SDK": [
89           "~> 3.15"
90         ]
91       }
92     },
93     {
94       "name": "Twitter",
95       "public_header_files": "Pod/Classes/Twitter/*.h",
96       "source_files": "Pod/Classes/Provider/Twitter/*.{h,m}",
97       "dependencies": {
98         "Auth0.iOS/Core": [
100         ],
101         "BDBOAuth1Manager": [
102           "~> 1.3"
103         ],
104         "TWReverseAuth": [
105           "~> 0.1.0"
106         ],
107         "PSAlertView": [
108           "~> 2.0"
109         ]
110       },
111       "frameworks": [
112         "Social",
113         "Accounts",
114         "Twitter"
115       ]
116     }
117   ]