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

groot-swift 0.5.1

groot-swift 0.5.1

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

Maintained by Rauhul Varma.



  • By
  • acm@uiuc

GrootSwift

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

Requirements

  • iOS 8.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+
  • Xcode 8.2+
  • Swift 3.1+

Installation

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

$ gem install cocoapods

CocoaPods 1.1.0+ is required to build GrootSwift.

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

source 'https://github.com/CocoaPods/Specs.git'
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.