-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathDevise.podspec
34 lines (25 loc) · 1.09 KB
/
Devise.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
#
# Devise.podspec
#
# Copyright (c) 2014 Netguru Sp. z o.o. All rights reserved.
#
Pod::Spec.new do |spec|
spec.name = 'Devise'
spec.summary = 'Simple Devise client for iOS'
spec.homepage = 'https://github.com/netguru/devise-ios'
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }
spec.authors = { 'Patryk Kaczmarek' => '[email protected]',
'Adrian Kashivskyy' => '[email protected]',
'Wojciech Trzasko' => '[email protected]'}
spec.version = '0.1.2'
spec.source = { :git => 'https://github.com/netguru/devise-ios.git', :tag => spec.version.to_s }
spec.platform = :ios, '7.0'
spec.source_files = 'Devise/**/*.{h,m}'
spec.requires_arc = true
spec.dependency 'AFNetworking', '~> 2.5.0'
spec.dependency 'UICKeyChainStore', '~> 1.1'
spec.dependency 'ngrvalidator', '~> 0.3.0'
spec.dependency 'XLForm', '~> 2.1'
spec.dependency 'Facebook-iOS-SDK', '~> 3.23'
spec.private_header_files = 'Devise/**/*Private.h'
end