├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── Gruntfile.coffee ├── README.md ├── bin └── cli.js ├── lib ├── mock-server.js └── util │ ├── extract.js │ └── helpers.js ├── package.json └── spec ├── cli-spec.coffee ├── fixtures-xkcd ├── api.raml ├── api2.raml ├── docs │ └── headline.md ├── examples │ └── comic-example.json └── schemas │ └── comic-schema.json ├── fixtures ├── api.raml └── schemas │ ├── artist-schema.json │ ├── error404-schema.json │ ├── song-schema.json │ └── songs-schema.json ├── formats └── index.js ├── helpers ├── cmd.coffee └── fetch.coffee ├── server-spec.coffee └── xkcd-spec.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/bin/cli.js -------------------------------------------------------------------------------- /lib/mock-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/lib/mock-server.js -------------------------------------------------------------------------------- /lib/util/extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/lib/util/extract.js -------------------------------------------------------------------------------- /lib/util/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/lib/util/helpers.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/package.json -------------------------------------------------------------------------------- /spec/cli-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/cli-spec.coffee -------------------------------------------------------------------------------- /spec/fixtures-xkcd/api.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/fixtures-xkcd/api.raml -------------------------------------------------------------------------------- /spec/fixtures-xkcd/api2.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/fixtures-xkcd/api2.raml -------------------------------------------------------------------------------- /spec/fixtures-xkcd/docs/headline.md: -------------------------------------------------------------------------------- 1 | A webcomic of romance, sarcasm, math, and language. -------------------------------------------------------------------------------- /spec/fixtures-xkcd/examples/comic-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/fixtures-xkcd/examples/comic-example.json -------------------------------------------------------------------------------- /spec/fixtures-xkcd/schemas/comic-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/fixtures-xkcd/schemas/comic-schema.json -------------------------------------------------------------------------------- /spec/fixtures/api.raml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/fixtures/api.raml -------------------------------------------------------------------------------- /spec/fixtures/schemas/artist-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/fixtures/schemas/artist-schema.json -------------------------------------------------------------------------------- /spec/fixtures/schemas/error404-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/fixtures/schemas/error404-schema.json -------------------------------------------------------------------------------- /spec/fixtures/schemas/song-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/fixtures/schemas/song-schema.json -------------------------------------------------------------------------------- /spec/fixtures/schemas/songs-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/fixtures/schemas/songs-schema.json -------------------------------------------------------------------------------- /spec/formats/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/formats/index.js -------------------------------------------------------------------------------- /spec/helpers/cmd.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/helpers/cmd.coffee -------------------------------------------------------------------------------- /spec/helpers/fetch.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/helpers/fetch.coffee -------------------------------------------------------------------------------- /spec/server-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/server-spec.coffee -------------------------------------------------------------------------------- /spec/xkcd-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacoss/raml-mockup/HEAD/spec/xkcd-spec.coffee --------------------------------------------------------------------------------