Skip to content

Commit e499fba

Browse files
committed
initial
0 parents  commit e499fba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1585
-0
lines changed

Diff for: .babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["es2015"]
3+
}

Diff for: .editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
root = true;
4+
5+
[*]
6+
# Ensure there's no lingering whitespace
7+
trim_trailing_whitespace = true
8+
# Ensure a newline at the end of each file
9+
insert_final_newline = true
10+
11+
[*.js]
12+
# Unix-style newlines
13+
end_of_line = lf
14+
charset = utf-8
15+
indent_style = space
16+
indent_size = 2

Diff for: .eslintrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"parserOptions": {
3+
"ecmaVersion": 6,
4+
"sourceType": "module"
5+
},
6+
"rules": {},
7+
"env": {
8+
"browser": true,
9+
"node": true
10+
}
11+
}

Diff for: .gitignore

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Runtime data
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# Directory for instrumented libs generated by jscoverage/JSCover
11+
lib-cov
12+
13+
# Coverage directory used by tools like istanbul
14+
coverage
15+
16+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17+
.grunt
18+
19+
# Compiled binary addons (http://nodejs.org/api/addons.html)
20+
build/Release
21+
22+
# Dependency directory
23+
# Commenting this out is preferred by some people, see
24+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
25+
node_modules
26+
bower_components
27+
28+
# Users Environment Variables
29+
.lock-wscript

Diff for: .npmignore

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Runtime data
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# Directory for instrumented libs generated by jscoverage/JSCover
11+
lib-cov
12+
13+
# Coverage directory used by tools like istanbul
14+
coverage
15+
16+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17+
.grunt
18+
19+
# Compiled binary addons (http://nodejs.org/api/addons.html)
20+
build/Release
21+
22+
# Dependency directory
23+
# Commenting this out is preferred by some people, see
24+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
25+
node_modules
26+
bower_components
27+
coverage
28+
tmp
29+
30+
# Users Environment Variables
31+
.lock-wscript

Diff for: .travis.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: node_js
2+
sudo: false
3+
matrix:
4+
include:
5+
- node_js: 4
6+
- node_js: stable
7+
- node_js: 4
8+
env: KARMA=true
9+
fast_finish: true
10+
before_script:
11+
- export DISPLAY=:99.0
12+
- sh -e /etc/init.d/xvfb start
13+
script: gulp test
14+
after_success:
15+
- cat coverage/*/lcov.info > coveralls.txt
16+
- cat coveralls.txt | node_modules/coveralls/bin/coveralls.js

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### [0.0.1](https://github.com/APIs-guru/openapi-sampler/openapi-sampler/releases/tag/v0.0.1)
2+
3+
- The first release

Diff for: LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Roman Hotsiy <[email protected]>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Diff for: README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# openapi-sampler
2+
3+
[![Travis build status](http://img.shields.io/travis/APIs-guru/openapi-sampler/openapi-sampler.svg?style=flat)](https://travis-ci.org/APIs-guru/openapi-sampler/openapi-sampler)
4+
[![Code Climate](https://codeclimate.com/github/APIs-guru/openapi-sampler/openapi-sampler/badges/gpa.svg)](https://codeclimate.com/github/APIs-guru/openapi-sampler/openapi-sampler)
5+
[![Coverage Status](https://coveralls.io/repos/APIs-guru/openapi-sampler/badge.svg?branch=master&service=github)](https://coveralls.io/github/APIs-guru/openapi-sampler?branch=master)
6+
[![Dependency Status](https://david-dm.org/APIs-guru/openapi-sampler/openapi-sampler.svg)](https://david-dm.org/APIs-guru/openapi-sampler/openapi-sampler)
7+
[![devDependency Status](https://david-dm.org/APIs-guru/openapi-sampler/openapi-sampler/dev-status.svg)](https://david-dm.org/APIs-guru/openapi-sampler/openapi-sampler#info=devDependencies)
8+
9+
Tool for generation samples based on OpenAPI payload/response schema

0 commit comments

Comments
 (0)