Skip to content

Commit 4f89bd4

Browse files
committed
Fix podspec
1 parent a349daa commit 4f89bd4

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

Auth0.podspec

+8-5
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,13 @@ Pod::Spec.new do |s|
1717
s.watchos.deployment_target = '2.0'
1818
s.tvos.deployment_target = '9.0'
1919
s.requires_arc = true
20-
s.ios.frameworks = 'UIKit', 'SafariServices'
2120

22-
s.ios.source_files = 'Auth0/**/*.{swift,h,m}'
23-
s.osx.source_files = ['Auth0/*.swift', 'Auth0/{Authentication,Extensions,Logger,Management,Networking,Crypto}/*.{swift,h,m}']
24-
s.watchos.source_files = ['Auth0/*.swift', 'Auth0/{Authentication,Extensions,Logger,Management,Networking,Crypto}/*.{swift,h,m}']
25-
s.tvos.source_files = ['Auth0/*.swift', 'Auth0/{Authentication,Extensions,Logger,Management,Networking,Crypto}/*.{swift,h,m}']
21+
s.ios.source_files = 'Auth0/*.{swift,h,m}'
22+
s.ios.frameworks = 'UIKit', 'SafariServices'
23+
s.osx.source_files = 'Auth0/*.swift'
24+
s.osx.exclude_files = 'Auth0/_ObjectiveWebAuth.swift', 'Auth0/ControllerModalPresenter.swift', 'Auth0/OAuth2Grant.swift', 'Auth0/OAuth2Session.swift', 'Auth0/SessionStorage.swift', 'Auth0/WebAuth.swift', 'Auth0/WebAuthError.swift', 'Auth0/SafariWebAuth.swift'
25+
s.watchos.source_files = 'Auth0/*.swift'
26+
s.watchos.exclude_files = 'Auth0/_ObjectiveWebAuth.swift', 'Auth0/ControllerModalPresenter.swift', 'Auth0/OAuth2Grant.swift', 'Auth0/OAuth2Session.swift', 'Auth0/SessionStorage.swift', 'Auth0/WebAuth.swift', 'Auth0/WebAuthError.swift', 'Auth0/SafariWebAuth.swift'
27+
s.tvos.source_files = 'Auth0/*.swift'
28+
s.tvos.exclude_files = 'Auth0/_ObjectiveWebAuth.swift', 'Auth0/ControllerModalPresenter.swift', 'Auth0/OAuth2Grant.swift', 'Auth0/OAuth2Session.swift', 'Auth0/SessionStorage.swift', 'Auth0/WebAuth.swift', 'Auth0/WebAuthError.swift', 'Auth0/SafariWebAuth.swift'
2629
end

Auth0.xcodeproj/project.pbxproj

+2
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,7 @@
352352
5FBEF3DD1D07A4B700D90941 /* A0WebAuthSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = A0WebAuthSpec.m; path = Auth0Tests/A0WebAuthSpec.m; sourceTree = SOURCE_ROOT; };
353353
5FC34AF51D0101BF000F28F5 /* A0ChallengeGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = A0ChallengeGenerator.h; path = Auth0/A0ChallengeGenerator.h; sourceTree = SOURCE_ROOT; };
354354
5FC34AF61D0101BF000F28F5 /* A0ChallengeGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = A0ChallengeGenerator.m; path = Auth0/A0ChallengeGenerator.m; sourceTree = SOURCE_ROOT; };
355+
5FC539D71D8F78F3002CAABB /* SafariServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SafariServices.framework; path = System/Library/Frameworks/SafariServices.framework; sourceTree = SDKROOT; };
355356
5FCAB1701D09005A00331C84 /* NSURLComponents+OAuth2.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = "NSURLComponents+OAuth2.swift"; path = "Auth0/NSURLComponents+OAuth2.swift"; sourceTree = SOURCE_ROOT; };
356357
5FCAB1721D09009600331C84 /* NSData+URLSafe.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = "NSData+URLSafe.swift"; path = "Auth0/NSData+URLSafe.swift"; sourceTree = SOURCE_ROOT; };
357358
5FCAB1751D0900CF00331C84 /* SessionStorage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = SessionStorage.swift; path = Auth0/SessionStorage.swift; sourceTree = SOURCE_ROOT; };
@@ -527,6 +528,7 @@
527528
5F06DDC21CC5712F0011842B /* Frameworks */ = {
528529
isa = PBXGroup;
529530
children = (
531+
5FC539D71D8F78F3002CAABB /* SafariServices.framework */,
530532
5F331B111D4BB8D700AE4382 /* tvOS */,
531533
5F06DDC31CC571480011842B /* iOS */,
532534
5F06DDC41CC5714F0011842B /* OSX */,

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## [1.0.0-rc.4](https://github.com/auth0/Auth0.swift/tree/[email protected]) (2016-09-14)
4+
[Full Changelog](https://github.com/auth0/Auth0.swift/compare/[email protected])
5+
6+
Normalize Telemetry methods to make migration to Swift 3 easier
7+
38
## [1.0.0-rc.3](https://github.com/auth0/Auth0.swift/tree/1.0.0-rc.3) (2016-09-14)
49
[Full Changelog](https://github.com/auth0/Auth0.swift/compare/1.0.0-rc.2...1.0.0-rc.3)
510

0 commit comments

Comments
 (0)