forked from joshhinman/StreamHub-iOS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStreamHub-iOS-SDK.podspec
26 lines (26 loc) · 1.18 KB
/
StreamHub-iOS-SDK.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
Pod::Spec.new do |s|
s.name = "StreamHub-iOS-SDK"
s.version = "1.3"
s.summary = "A client library for Livefyre's API"
s.description = <<-DESC
StreamHub-iOS is the official Livefyre SDK for building real-time native iOS apps that interact with Livefyre services. With it, you can easily create apps that obtain user-generated content sourced by Livefye, poll for updates, and create or modify content.
DESC
s.homepage = "https://github.com/Livefyre/StreamHub-iOS-SDK"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "JJ Weber" => "[email protected]", "Eugene Scherba" => "[email protected]" }
s.platform = :ios
s.ios.deployment_target = '7.0'
s.ios.prefix_header_file = 'LFSClient/LFSClient-Prefix.pch'
s.source = { :git => 'https://github.com/Livefyre/StreamHub-iOS-SDK.git', :tag => "1.3" }
#s.resources = 'LFSClient/Resources/*'
s.subspec 'core' do |sp|
sp.source_files = 'LFSClient/**/*.{h,m}'
sp.requires_arc = true
sp.dependency 'AFNetworking', '2.6.3'
sp.dependency 'JWT', '1.0.3'
sp.dependency 'Base64', '1.0.1'
sp.dependency 'NSString-Hashes', '1.2.2'
sp.dependency 'MBProgressHUD', '~> 0.9.2'
end
s.dependency 'LFJSONKit', '~> 1.6a'
end