CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

GrootSwift 0.6.1

GrootSwift 0.6.1

TestsTested
LangLanguage SwiftSwift
License Custom
ReleasedLast Release Apr 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Rauhul Varma.



  • By
  • ACM@UIUC

Pod for easily adding Groot integration to your iOS App or Swift Project

Requirements

  • iOS 10.0+ / tvOS 10.0+
  • Xcode 8.0+
  • Swift 3.0+

Installation

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

CocoaPods 1.0.0+ is required to build GrootSwift.

To integrate GrootSwift into your Xcode project using CocoaPods, specify it in your Podfile:

platform :ios, '10.0'
use_frameworks!

target '<Your Target Name>' do
    pod 'GrootSwift', '~> 0.3.1'
end

Then, run the following command:

$ pod install

Usage

Example Merch Service Request

import GrootSwift

MerchService.getItems(success: { (json) in
    // Handle Success (Background thread)
}) { (error) in
    // Handle Failure (Background thread)
}.perform(withAuthorization: nil)

License

This project is licensed under the University of Illinois/NCSA Open Source License. For a full copy of this license take a look at the LICENSE file.

When contributing new files to this project, preappend the following header to the file as a comment:

Copyright © 2017, ACM@UIUC

This file is part of the Merch Project.

The Merch Project is open source software, released under the University of Illinois/NCSA Open Source License.
You should have received a copy of this license in a file with the distribution.