Skip to content

Commit

Permalink
Move to root the SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
radude89 committed Sep 29, 2024
1 parent 1dcd567 commit 4e664ba
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 100 deletions.
78 changes: 6 additions & 72 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,74 +1,8 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

# Mac OS X
.DS_Store

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
/.build
/Packages
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
.build/

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output

# When SPM is used, Sources/Playground.swift will be renamed to Sources/main.swift
Sources/main.swift
Package.resolved
DerivedData/
.swiftpm/configuration/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
objectVersion = 77;
objects = {

/* Begin PBXBuildFile section */
F7D278782CA9920B0096C830 /* KeychainStorage in Frameworks */ = {isa = PBXBuildFile; productRef = F7D278772CA9920B0096C830 /* KeychainStorage */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
F7D278652CA991620096C830 /* KeychainStorageExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KeychainStorageExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
Expand All @@ -27,7 +23,6 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F7D278782CA9920B0096C830 /* KeychainStorage in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -70,7 +65,6 @@
);
name = KeychainStorageExample;
packageProductDependencies = (
F7D278772CA9920B0096C830 /* KeychainStorage */,
);
productName = KeychainStorageExample;
productReference = F7D278652CA991620096C830 /* KeychainStorageExample.app */;
Expand Down Expand Up @@ -101,7 +95,7 @@
mainGroup = F7D2785C2CA991620096C830;
minimizedProjectReferenceProxies = 1;
packageReferences = (
F7D278762CA9920B0096C830 /* XCLocalSwiftPackageReference "../../KeychainStorage" */,
F71BE9CF2CA9989B00931907 /* XCRemoteSwiftPackageReference "KeychainStorage" */,
);
preferredProjectObjectVersion = 77;
productRefGroup = F7D278662CA991620096C830 /* Products */;
Expand Down Expand Up @@ -334,19 +328,16 @@
};
/* End XCConfigurationList section */

/* Begin XCLocalSwiftPackageReference section */
F7D278762CA9920B0096C830 /* XCLocalSwiftPackageReference "../../KeychainStorage" */ = {
isa = XCLocalSwiftPackageReference;
relativePath = ../../KeychainStorage;
};
/* End XCLocalSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
F7D278772CA9920B0096C830 /* KeychainStorage */ = {
isa = XCSwiftPackageProductDependency;
productName = KeychainStorage;
/* Begin XCRemoteSwiftPackageReference section */
F71BE9CF2CA9989B00931907 /* XCRemoteSwiftPackageReference "KeychainStorage" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/radude89/KeychainStorage/";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 2.0.0;
};
};
/* End XCSwiftPackageProductDependency section */
/* End XCRemoteSwiftPackageReference section */
};
rootObject = F7D2785D2CA991620096C830 /* Project object */;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

import Foundation
import KeychainStorage
//import KeychainStorage

final class MyAppKeychain {

Expand Down
8 changes: 0 additions & 8 deletions KeychainStorage/.gitignore

This file was deleted.

File renamed without changes.

0 comments on commit 4e664ba

Please sign in to comment.