-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathTDOAuth.podspec
37 lines (29 loc) · 1.26 KB
/
TDOAuth.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
35
36
37
#
# Be sure to run `pod lib lint TDOAuth.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'TDOAuth'
s.version = '1.6.3'
s.summary = 'Elegant, simple and compliant OAuth 1.x solution.'
s.description = <<-DESC
TDOAuth is a simple, compliant OAuth 1.x solution for signing network requests.
DESC
s.homepage = 'https://github.com/yahoo/TDOAuth'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Adam Kaplan' => '[email protected]', 'Max Howell' => '[email protected]' }
s.source = { :git => 'https://github.com/yahoo/TDOAuth.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.3'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '3.0'
s.osx.deployment_target = '10.10'
s.swift_versions = [ '4.0', '4.2', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6' ]
s.default_subspec = 'Swift'
s.subspec 'Swift' do |ss|
ss.source_files = 'Source/*.swift', 'Source/**/*.{swift}'
ss.dependency 'OMGHTTPURLRQ/UserAgent'
end
end