Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
Removed plugin support
Browse files Browse the repository at this point in the history
  • Loading branch information
whitlockjc committed Jan 11, 2016
1 parent 6ca745d commit 6092438
Show file tree
Hide file tree
Showing 39 changed files with 5,336 additions and 4,974 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
no-multiple-empty-lines: 2
no-nested-ternary: 2
no-path-concat: 2
no-undef: 2
no-unused-vars: 2
object-curly-spacing: [2, "never"]
quotes: [2, "single", "avoid-escape"]
Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
A library that simplifies [Swagger][swagger] integrations.
A library that simplifies [Swagger][swagger] integrations. This library handles the minutiae of loading Swagger
documents *(local and remote)*, resolving references *(local, remote)*, building an object model and providing you with
a rich set of APIs for things like Swagger document validation, request/response validation, etc. For more details on
the available APIs, please view the [API Documentation](https://github.com/apigee-127/sway/blob/master/docs/API.md).

Sway will always be built around the latest stable release of Swagger, which happens to be version `2.0` right now.
This means that its APIs and object model will be specific to that version of Swagger and supporting any other versions
of Swagger will require a conversion step prior to using Sway.

## Project Badges

Expand Down Expand Up @@ -33,8 +40,8 @@ bower install sway --save

The standalone binaries come in two flavors:

* [sway-standalone.js](https://raw.github.com/apigee-127/sway/master/browser/sway.js): _4,400kb_, full source and source maps
* [sway-standalone-min.js](https://raw.github.com/apigee-127/sway/master/browser/sway-min.js): _636kb_, minified, compressed and no source map
* [sway-standalone.js](https://raw.github.com/apigee-127/sway/master/browser/sway.js): _4,484kb_, full source and source maps
* [sway-standalone-min.js](https://raw.github.com/apigee-127/sway/master/browser/sway-min.js): _644kb_, minified, compressed and no source map

### Node.js

Expand Down
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* `Operation#getResponseExample` -> `Response#getExample`
* `Operation#getResponseSample` -> `Response#getSample`
* Removed callback support for `Sway#create` *(Issue 51)*
* Removed plugin support *(Issue #55)*
* Updated invalid/missing JSON References to be a structural validation errors like z-schema does

### v0.6.0 (2015-11-25)
Expand Down
5 changes: 2 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@
"test"
],
"dependencies": {
"js-yaml": "~3.4.6",
"json-refs": "~2.0.2",
"js-yaml": "~3.5.1",
"json-refs": "~2.0.3",
"lodash": "~3.10.1",
"path-loader": "*",
"visionmedia-debug": "~2.2.0",
"z-schema": "~3.16.1",
"js-base64": "~2.1.9"
Expand Down
24 changes: 12 additions & 12 deletions browser/sway-min.js

Large diffs are not rendered by default.

37 changes: 19 additions & 18 deletions browser/sway-standalone-min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 6092438

Please sign in to comment.