GitXplorerGitXplorer
e

b2swift

public
1 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
adf63f705486a568bfca07833f1f36cbd014d24a

Changed Bucket to struct

eezfe committed 5 years ago
Unverified
7c3a02ddbb237a02e9f6f7b203722558de0b5a63

Corrected typo

eezfe committed 5 years ago
Unverified
f15d4d4e3e3ec15be74fe37c8a9a48e0c6a1dcea

Improved Bucket Searching

eezfe committed 5 years ago
Unverified
d11ea6291639423d6e326c689c76b2e30444e17c

Further Dependency Updates

eezfe committed 5 years ago
Unverified
4b8b14aaecf8a016498eae57d2e5c82626e0b68d

General Restructuring

eezfe committed 5 years ago
Unverified
35f4b7bed126a4974aa9e215c829681b59368492

Restrict to macOS 10.11

eezfe committed 5 years ago

README

The README file for this repository.

b2swift

Warning: This project is not tested and may have bugs in it. I do use this project, however I've only tested the parts that I use. If you run into an issue or something is missing, open an Issue.

To use this project in your repository, add the following line to your dependencies:

.package(url: "https://github.com/ezfe/b2swift", .branch("master"))

Also remember to add b2Swift to the target dependencies.

Example Package.swift file:

import PackageDescription

let package = Package(
    name: "ProjectName",
    products: [
        .library(
            name: "ProjectName",
            targets: ["ProjectName"]),
    ],
    dependencies: [
        .package(url: "https://github.com/ezfe/b2swift", .branch("master"))
    ],
    targets: [
        .target(
            name: "ProjectName",
            dependencies: ["b2swift"]),
        .testTarget(
            name: "ProjectNameTests",
            dependencies: ["ProjectName"]),
    ]
)