-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
240 additions
and
441 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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Configuration for Carthage (https://github.com/Carthage/Carthage) | ||
|
||
github "jspahrsummers/xcconfigs" ~> 0.12 | ||
github "jspahrsummers/xcconfigs" ~> 1.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 "jspahrsummers/xcconfigs" "0.12" | ||
github "jspahrsummers/xcconfigs" "1.0" | ||
github "mattrubin/Base32" "1.1.2+xcode10.2" |
Submodule xcconfigs
updated
from bb7955 to d0f899
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,31 +1,15 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "OneTimePassword" | ||
s.version = "3.1.5" | ||
s.version = "3.2.0" | ||
s.summary = "A small library for generating TOTP and HOTP one-time passwords." | ||
s.homepage = "https://github.com/mattrubin/OneTimePassword" | ||
s.license = "MIT" | ||
s.author = "Matt Rubin" | ||
s.swift_version = "4.0" | ||
s.swift_versions = ["4.2", "5.0"] | ||
s.ios.deployment_target = "8.0" | ||
s.watchos.deployment_target = "2.0" | ||
s.source = { :git => "https://github.com/mattrubin/OneTimePassword.git", :tag => s.version } | ||
s.source_files = "Sources/*.{swift}" | ||
s.requires_arc = true | ||
s.dependency "Base32", "~> 1.1.2" | ||
s.pod_target_xcconfig = { | ||
"SWIFT_INCLUDE_PATHS[sdk=appletvos*]" => "$(SRCROOT)/OneTimePassword/CommonCrypto/appletvos", | ||
"SWIFT_INCLUDE_PATHS[sdk=appletvsimulator*]" => "$(SRCROOT)/OneTimePassword/CommonCrypto/appletvsimulator", | ||
"SWIFT_INCLUDE_PATHS[sdk=iphoneos*]" => "$(SRCROOT)/OneTimePassword/CommonCrypto/iphoneos", | ||
"SWIFT_INCLUDE_PATHS[sdk=iphonesimulator*]" => "$(SRCROOT)/OneTimePassword/CommonCrypto/iphonesimulator", | ||
"SWIFT_INCLUDE_PATHS[sdk=macosx*]" => "$(SRCROOT)/OneTimePassword/CommonCrypto/macosx", | ||
"SWIFT_INCLUDE_PATHS[sdk=watchos*]" => "$(SRCROOT)/OneTimePassword/CommonCrypto/watchos", | ||
"SWIFT_INCLUDE_PATHS[sdk=watchsimulator*]" => "$(SRCROOT)/OneTimePassword/CommonCrypto/watchsimulator", | ||
} | ||
s.preserve_paths = "CommonCrypto/*" | ||
# The prepare_command "will be executed after the Pod is downloaded." | ||
# The script is *not* run on every build, or even on every `pod install`, so if the selected | ||
# Xcode path changes after the pod is downloaded, you may need to clear the pod from the cache at | ||
# ~/Library/Caches/CocoaPods so the script can update the modulemaps with the new path. | ||
# https://guides.cocoapods.org/syntax/podspec.html#prepare_command | ||
s.prepare_command = "CommonCrypto/injectXcodePath.sh" | ||
end |
Oops, something went wrong.