d-date / LGTMKit

Get LGTM image from lgtm.in, written by swift

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LGTMKit

Get LGTM image from lgtm.in, written by swift

Inspired by danger-lgtm.

Install

Swift Package Manager

Specifiy Dependency on your Package.swift.

let package = Package(
    name: "Dangerfile",
    products: [.library(name: "MarathonDependencies", type: .dynamic, targets: ["Dangerfile"])],
    dependencies: [
        .package(url: "https//github.com/d-date/LGTMKit.git")
    ],
    targets: [.target(name: "Dangerfile", dependencies: ["LGTMKit"])],
    swiftLanguageVersions: [4]
)

Usage

Just written as below. Very easy 😎

import LGTMKit

LGTMKit.fetchImage() { (url) in
    print(url) // LGTM image url
}

If you want a https image only, you can use httpsImageOnly option

LGTMKit.fetchImage(httpsImageOnly: true) { (url) in
    print(url) // LGTM image url
}

Contribution

  1. Download this repo.
  2. Run swift package generate-xcodeproj.
  3. You can develop with your Xcode.
  4. Commit your change.
  5. Make Pull Request.

About

Get LGTM image from lgtm.in, written by swift

License:MIT License


Languages

Language:Swift 100.0%