Insert description here.
- **Jazzy** ```[sudo] gem install jazzy```
- **Brew** ```/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"```
- **Make** ```brew install make```
- **Swiftlint** ```brew install swiftlint```
## Style Guide
Following our style guide should:
* Make it easier to read and begin understanding the unfamiliar code.
* Make code easier to maintain.
* Reduce simple programmer errors.
* Reduce cognitive load while coding.
* Keep discussions on diffs focused on the code's logic rather than its style.
*Note that brevity is not a primary goal.*
## Installation
####Using as a dependency
``` swift
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "YourTestProject",
dependencies: [
.package(url: "https://github.com/virtualstores/ios-sensor-fusion.git", from: "0.0.1")
],
targets: [
.target(name: "YourTestProject", dependencies: ["VSSensorFusion"])
]
)
And then import wherever needed: import VSSensorFusion
If you have doubts, please, check the following links:
After successfully retrieved the package and added it to your project, just import VSSensorFusion
and you can get the full benefits of it.
import VSSensorFusion
// Add some example here
Package.swift
fileWe have added a few helpers to make your life easier:
make build
to build the project via command linemake test
to test the project via command linemake jazzy
to generate the documentation and output to the Docs
foldermake lint
to execute Swiftlintmake fixlint
to auto-correct Swiftlint warningslink |
Stars: 0 |
Last commit: 3 weeks ago |
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics