-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from hyperoslo/fix/swift4
Update to Swift 4
- Loading branch information
Showing
14 changed files
with
56 additions
and
46 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.0 | ||
4.0 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github "hyperoslo/Keychains" "1.0.0" | ||
github "auth0/JWTDecode.swift" "2.0.0" | ||
github "hyperoslo/Keychains" ~> 2.0 | ||
github "auth0/JWTDecode.swift" ~> 2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github "auth0/JWTDecode.swift" "2.0.0" | ||
github "hyperoslo/Keychain" "1.0.0" | ||
github "auth0/JWTDecode.swift" "2.1.1" | ||
github "hyperoslo/Keychains" "2.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "OhMyAuth" | ||
s.summary = "Simple OAuth2 library with a support of multiple services." | ||
s.version = "1.2.0" | ||
s.version = "2.0.0" | ||
s.homepage = "https://github.com/hyperoslo/OhMyAuth" | ||
s.license = 'MIT' | ||
s.author = { "Hyper Interaktiv AS" => "[email protected]" } | ||
|
@@ -11,7 +11,7 @@ Pod::Spec.new do |s| | |
} | ||
s.social_media_url = 'https://twitter.com/hyperoslo' | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.ios.deployment_target = '9.0' | ||
s.osx.deployment_target = '10.11' | ||
|
||
s.requires_arc = true | ||
|
@@ -21,8 +21,8 @@ Pod::Spec.new do |s| | |
s.ios.frameworks = 'UIKit', 'Foundation' | ||
s.osx.frameworks = 'Cocoa', 'Foundation' | ||
|
||
s.dependency 'Keychains', '~> 1.0.0' | ||
s.dependency 'JWTDecode', '~> 2.0.0' | ||
s.dependency 'Keychains', '~> 2.0' | ||
s.dependency 'JWTDecode', '~> 2.0' | ||
|
||
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' } | ||
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' } | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
machine: | ||
xcode: | ||
version: "9.0" | ||
|
||
dependencies: | ||
override: | ||
- bin/bootstrap-if-needed | ||
cache_directories: | ||
- "Carthage" | ||
|
||
test: | ||
override: | ||
- set -o pipefail && xcodebuild -project OhMyAuth.xcodeproj -scheme "OhMyAuth-Mac" -sdk macosx clean build | ||
- set -o pipefail && xcodebuild -project OhMyAuth.xcodeproj -scheme "OhMyAuth-Mac" -sdk macosx -enableCodeCoverage YES test | ||
- set -o pipefail && xcodebuild -project OhMyAuth.xcodeproj -scheme "OhMyAuth-iOS" -sdk iphonesimulator clean build | ||
- set -o pipefail && xcodebuild -project OhMyAuth.xcodeproj -scheme "OhMyAuth-iOS" -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 8,OS=11.0.1' -enableCodeCoverage YES test |