GitXplorerGitXplorer
m

Tentacle

public
253 stars
24 forks
2 issues

Commits

List of commits on branch master.
Verified
d28d20d360c340c5047c1fb7ea3be3f4fc8d0b01

Migrate off of deprecated APIs

eeliperkins committed a year ago
Verified
206e185eb0b11e0f6a09cf544e6e13f79f4bd9a4

Explicitly set macOS deployment target to 10.15

eeliperkins committed a year ago
Verified
d261622cfe45b25fe5afc1d4379746582aac1607

Update to recommended Xcode settings

eeliperkins committed a year ago
Verified
fa4d9f6d1f534e647e72880e058f67581a294220

Merge pull request #112 from mdiep/ep/gha

eeliperkins committed a year ago
Verified
1ff5fbb2ca78e16a50878e689ab1a88a5d180222

Downgrade to Swift 5.7.1

eeliperkins committed a year ago
Verified
b8032bb082dd6668253316f0f5fe83c80a1ba2e4

Copy test resources

eeliperkins committed a year ago

README

The README file for this repository.

Tentacle MIT license

A Swift framework for the GitHub API

let client  = Client(.dotCom, token: "")
let repo    = Repository(owner: "ReactiveCocoa", name: "ReactiveCocoa")
let request = repo.release(forTag: "tag-name")
client
    .execute(request)
    .startWithResult { result in
        switch result {
        case let .success(response, release):
            print("Downloaded release: \(release)")
        case let .failure(error):
            print("An error occurred: \(error)")
        }
    }

Tentacle is built with ReactiveSwift.

License

Tentacle is available under the MIT License