Fahrni / PastryKit

Swift code used for communicating with The Pastry Box Project API

Home Page:http://fahrni.me/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PastryKit

Swift code used for communicating with The Pastry Box Project API

A note about organization:

  • PastryKit - Contains the only two Swift files you'll need to get stuff from The Pastry Box; PastryKit and Pastry
  • PastryTest - An application (really, really, ugly) that will let you execute PastryKit methods
  • PastryTestTests - Unit tests for PastryKit. There are only a few.

Example of use, get all Pastries by Baker Mike Monteiro:

  private func showPastryBaker() {
      let pastryKit = PastryKit()
      pastryKit.thoughtsByBaker("mike-monteiro", completionHandler:{ (pasteries, error) in
          if nil != error { print(error) }
          if nil != pasteries { print(pasteries) }
      })
  }

Rob Fahrni - April 4, 2015 - Visalia, CA

About

Swift code used for communicating with The Pastry Box Project API

http://fahrni.me/

License:MIT License


Languages

Language:Swift 100.0%