Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sparrowcode/swiftboost
Collection of Swift-extensions to boost development process.
https://github.com/sparrowcode/swiftboost
awesome awesome-swift extensions open-source productivity-booster swift swift-extension swift-extensions swift-library swifterswift
Last synced: 4 days ago
JSON representation
Collection of Swift-extensions to boost development process.
- Host: GitHub
- URL: https://github.com/sparrowcode/swiftboost
- Owner: sparrowcode
- License: mit
- Created: 2020-09-19T18:13:16.000Z (about 4 years ago)
- Default Branch: v4
- Last Pushed: 2024-08-26T13:18:15.000Z (3 months ago)
- Last Synced: 2024-10-13T07:38:53.131Z (about 1 month ago)
- Topics: awesome, awesome-swift, extensions, open-source, productivity-booster, swift, swift-extension, swift-extensions, swift-library, swifterswift
- Language: Swift
- Homepage: https://sparrowcode.io/frameworks
- Size: 11.4 MB
- Stars: 202
- Watchers: 10
- Forks: 19
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# SwiftBoost
Collection of Swift-extensions to boost development process.
### iOS Dev Community
## Installation
Ready to use on iOS 13+, tvOS 13+, watchOS 6.0+.
### Swift Package Manager
In Xcode go to Project -> Your Project Name -> `Package Dependencies` -> Tap *Plus*. Insert url:
```
https://github.com/sparrowcode/SwiftBoost
```or adding it to the `dependencies` of your `Package.swift`:
```swift
dependencies: [
.package(url: "https://github.com/sparrowcode/SwiftBoost", .upToNextMajor(from: "4.0.8"))
]
```### CocoaPods:
This is an outdated way of doing things. I advise you to use [SPM](#swift-package-manager). However, I will continue to support Cocoapods for some time.
Cocoapods Instalation
[CocoaPods](https://cocoapods.org) is a dependency manager. For usage and installation instructions, visit their website. To integrate using CocoaPods, specify it in your `Podfile`:
```ruby
pod 'SwiftBoost'
```### Manually
If you prefer not to use any of dependency managers, you can integrate manually. Put `Sources/SwiftBoost` folder in your Xcode project. Make sure to enable `Copy items if needed` and `Create groups`.