Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafaelesantos/refds-shared
RefdsShared is a collection of handy functions and extensions to facilitate Swift development. This package provides a variety of extensions for primitive types, date manipulation, and new components that can be easily integrated into other Swift projects
https://github.com/rafaelesantos/refds-shared
error extensions logger model random-text refds refds-shared swift
Last synced: 5 days ago
JSON representation
RefdsShared is a collection of handy functions and extensions to facilitate Swift development. This package provides a variety of extensions for primitive types, date manipulation, and new components that can be easily integrated into other Swift projects
- Host: GitHub
- URL: https://github.com/rafaelesantos/refds-shared
- Owner: rafaelesantos
- License: mit
- Created: 2024-03-19T18:07:43.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-09-06T14:54:10.000Z (2 months ago)
- Last Synced: 2024-09-07T01:48:37.519Z (2 months ago)
- Topics: error, extensions, logger, model, random-text, refds, refds-shared, swift
- Language: Swift
- Homepage:
- Size: 197 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 📦 Refds Shared
[![CI](https://github.com/rafaelesantos/refds-shared/actions/workflows/swift.yml/badge.svg)](https://github.com/rafaelesantos/refds-shared/actions/workflows/swift.yml)
`RefdsShared` is a collection of handy functions and extensions to facilitate Swift development. This package provides a variety of extensions for primitive types, date manipulation, and new components that can be easily integrated into other Swift projects.
## Features
- [x] **Extensions for Primitive Types**: Extensions for primitive types like String, Int, Double, etc., to add additional functionality and ease working with these types.
- [x] **Date Manipulation**: Functions to facilitate date manipulation, such as formatting, difference calculation, etc.
- [x] **New Components**: Custom components that can be easily integrated into user interfaces, such as new controls, custom views, etc.## Installation
Add this project to your `Package.swift` file.
```swift
import PackageDescriptionlet package = Package(
dependencies: [
.package(url: "https://github.com/rafaelesantos/refds-shared.git", branch: "main")
],
targets: [
.target(
name: "YourProject",
dependencies: [
.product(
name: "RefdsShared",
package: "refds-shared"),
]),
]
)
```