Skip to content

Commit

Permalink
added the travis build status.
Browse files Browse the repository at this point in the history
  • Loading branch information
grgcombs committed Apr 29, 2014
1 parent 92c2bea commit b9908b4
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
JSON Tools (Objective-C)
JSON Tools (Objective-C)
=========
by [Gregory Combs](https://github.com/grgcombs)
(MIT License - 2014)
=========

[![Build Status](https://travis-ci.org/grgcombs/JSONTools.svg?branch=master)](https://travis-ci.org/grgcombs/JSONTools)

JSON Patch, JSON Pointer, and JSON Schema Validation in Objective-C

Expand Down Expand Up @@ -79,7 +81,8 @@ This Objective-C library is a collection of classes and categories that implemen
@"foo": @[@"bar", @"baz"],
@"bork": @{
@"crud": @"stuff",
@"guts": @"and things" }
@"guts": @"and things"
}
}
};

Expand All @@ -90,7 +93,8 @@ This Objective-C library is a collection of classes and categories that implemen
// Yields -> "and things"

NSDictionary *result3 = [_obj valueForJSONPointer: @"/data/bork"];
// Yields -> {"crud": "stuff","guts": "and things"} }
// Yields -> {"crud": "stuff","guts": "and things"}
}

```

Expand Down

0 comments on commit b9908b4

Please sign in to comment.