From 247848e788333b39ad25ef6bac166a38da5dbf65 Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Wed, 30 Jan 2019 18:00:27 -0800 Subject: [PATCH] Update README --- Package.resolved | 36 ------------------------------------ README.md | 8 ++------ 2 files changed, 2 insertions(+), 42 deletions(-) diff --git a/Package.resolved b/Package.resolved index c0de976..920f7b5 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,24 +1,6 @@ { "object": { "pins": [ - { - "package": "AnyCodable", - "repositoryURL": "https://github.com/Flight-School/AnyCodable.git", - "state": { - "branch": null, - "revision": "396ccc3dba5bdee04c1e742e7fab40582861401e", - "version": "0.1.0" - } - }, - { - "package": "FileCheck", - "repositoryURL": "https://github.com/llvm-swift/FileCheck.git", - "state": { - "branch": null, - "revision": "89b8480055f9adf8ce2f9ad5e2fac7ac1076242e", - "version": "0.0.8" - } - }, { "package": "Poly", "repositoryURL": "https://github.com/mattpolzin/Poly.git", @@ -27,24 +9,6 @@ "revision": "77f45b8963a51c02d71fc4075eba5cff47ff0d07", "version": "1.0.0" } - }, - { - "package": "Sampleable", - "repositoryURL": "https://github.com/mattpolzin/Sampleable.git", - "state": { - "branch": null, - "revision": "6572998ac30685d8bb73e6b725596d07d891a75a", - "version": "1.0.0" - } - }, - { - "package": "SwiftCheck", - "repositoryURL": "https://github.com/typelift/SwiftCheck.git", - "state": { - "branch": null, - "revision": "cf9958085b2ee1643e541e407c3233d1b76c18ff", - "version": "0.11.0" - } } ] }, diff --git a/README.md b/README.md index a861608..1906073 100644 --- a/README.md +++ b/README.md @@ -836,11 +836,7 @@ print(response.author) The `JSONAPI` framework is packaged with a test library to help you test your `JSONAPI` integration. The test library is called `JSONAPITesting`. It provides literal expressibility for `Attribute`, `ToOneRelationship`, and `Id` in many situations so that you can easily write test `Entity` values into your unit tests. It also provides a `check()` function for each `Entity` type that can be used to catch problems with your `JSONAPI` structures that are not caught by Swift's type system. You can see the `JSONAPITesting` in action in the Playground included with the `JSONAPI` repository. # JSONAPI+Arbitrary -The `JSONAPIArbitrary` framework adds `Arbitrary` support via `SwiftCheck`. With a little extra work on your part, this framework will allow you to create "arbitrary" (i.e. randomly generated) instances of your JSONAPI entities, includes, documents, etc. - -This Framework is currently undocumented, but familiarity with `SwiftCheck` will likely afford the user enough information to use this library to aid in the generation of arbitrary JSONAPI Documents for testing purposes. +This library has moved into its own Package. See https://github.com/mattpolzin/JSONAPI-Arbitrary # JSONAPI+OpenAPI -The `JSONAPIOpenAPI` framework adds the ability to generate OpenAPI compliant JSON documentation of a JSONAPI Document. - -*This library is in its infancy. The documentation will grow as the framework becomes more complete.* +This library has moved into its own Package. See https://github.com/mattpolzin/JSONAPI-OpenAPI