forked from seivan-archives/SHOmniAuthFacebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSHOmniAuthFacebook.podspec
33 lines (24 loc) · 1020 Bytes
/
SHOmniAuthFacebook.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
Pod::Spec.new do |s|
name = "SHOmniAuthFacebook"
url = "https://github.com/seivan/#{name}"
git_url = "#{url}.git"
version = "0.2.1"
source_files = "#{name}/**/*.{h,m}"
s.name = name
s.version = version
s.summary = "Facebook Strategy for SHOmniAuth."
s.description = <<-DESC
A strategy for authenticating with Facebook via SHOmniAuth.
Uses ACAccount for store and SLRequest for signed requests.
DESC
s.homepage = "https://github.com/seivan/SHOmniAuthFacebook"
s.license = 'MIT'
s.author = { "Seivan Heidari" => "[email protected]" }
s.source = { :git => "https://github.com/seivan/SHOmniAuthFacebook.git", :tag => version }
s.platform = :ios, '5.0'
s.source_files = source_files
s.requires_arc = true
s.frameworks = 'Accounts', 'Social'
s.dependency 'Facebook-iOS-SDK', '~> 3.2.1'
s.dependency 'SHOmniAuth', '~> 0.2.0'
end