https://github.com/rafaelesantos/refds-core-data
RefdsCoreData is a Swift library that simplifies the integration of Core Data into your projects using Swift Package Manager (SPM). With just a few lines of code, you can start using Core Data in your application quickly and efficiently.
https://github.com/rafaelesantos/refds-core-data
core-data refds-shared swift swift-package-manager
Last synced: 5 months ago
JSON representation
RefdsCoreData is a Swift library that simplifies the integration of Core Data into your projects using Swift Package Manager (SPM). With just a few lines of code, you can start using Core Data in your application quickly and efficiently.
- Host: GitHub
- URL: https://github.com/rafaelesantos/refds-core-data
- Owner: rafaelesantos
- License: mit
- Created: 2023-09-19T19:38:09.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-06T19:57:08.000Z (over 1 year ago)
- Last Synced: 2025-04-14T11:06:36.507Z (about 1 year ago)
- Topics: core-data, refds-shared, swift, swift-package-manager
- Language: Swift
- Homepage:
- Size: 23.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Refds Core Data
[](https://github.com/rafaelesantos/refds-core-data/actions/workflows/swift.yml)
RefdsCoreData is a Swift library that simplifies the integration of Core Data into your projects using Swift Package Manager (SPM). With just a few lines of code, you can start using Core Data in your application quickly and efficiently.
## Installation
Add this project to your `Package.swift` file.
```swift
import PackageDescription
let package = Package(
dependencies: [
.package(url: "https://github.com/rafaelesantos/refds-core-data.git", branch: "main")
],
targets: [
.target(
name: "YourProject",
dependencies: [
.product(
name: "RefdsUI",
package: "refds-core-data"),
]),
]
)
```