Skip to content

Commit

Permalink
Stable Version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Feb 19, 2016
1 parent 14557d6 commit a6e119a
Show file tree
Hide file tree
Showing 25 changed files with 661 additions and 1,203 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["es2015"]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ node_modules
*.iml

data/
doc/
33 changes: 0 additions & 33 deletions .jshintrc

This file was deleted.

38 changes: 38 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# Commenting this out is preferred by some people, see
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
node_modules

# Users Environment Variables
.lock-wscript

.idea/
*.iml

data/
doc/
test/
.babelrc
webpack.config.js
circle.yml
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
##### 0.6.0 - 18 February 2016

- Upgraded dependencies
- Now using js-data-adapter-tests

##### 0.5.1 - 10 July 2015

###### Backwards compatible bug fixes
Expand Down
7 changes: 6 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Contributing Guide

First, support is handled via the [Mailing List](https://groups.io/org/groupsio/jsdata). Ask your questions there.
Support questions are handled via [StackOverflow][so], [Slack][slack], and the
[Mailing List][ml]. Ask your questions there.

When submitting issues on GitHub, please include as much detail as possible to make debugging quick and easy.

Expand All @@ -20,3 +21,7 @@ When submitting issues on GitHub, please include as much detail as possible to m
1. (in another terminal) `grunt karma:dev` (runs the tests)
1. Write your code, including relevant documentation and tests
1. Submit a PR and we'll review

[slack]: http://slack.js-data.io
[ml]: https://groups.io/org/groupsio/jsdata
[so]: http://stackoverflow.com/questions/tagged/jsdata
82 changes: 0 additions & 82 deletions Gruntfile.js

This file was deleted.

105 changes: 43 additions & 62 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,20 @@
<img src="https://raw.githubusercontent.com/js-data/js-data/master/js-data.png" alt="js-data logo" title="js-data" align="right" width="64" height="64" />
<img src="https://raw.githubusercontent.com/js-data/js-data/master/js-data.png" alt="js-data logo" title="js-data" align="right" width="96" height="96" />

## js-data-mongodb [![npm version](https://img.shields.io/npm/v/js-data-mongodb.svg?style=flat-square)](https://www.npmjs.org/package/js-data-mongodb) [![Circle CI](https://img.shields.io/circleci/project/js-data/js-data-mongodb/master.svg?style=flat-square)](https://circleci.com/gh/js-data/js-data-mongodb/tree/master) [![npm downloads](https://img.shields.io/npm/dm/js-data-mongodb.svg?style=flat-square)](https://www.npmjs.org/package/js-data-mongodb) [![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/js-data/js-data-mongodb/blob/master/LICENSE)
# js-data-mongodb

[![Slack Status][sl_b]][sl_l]
[![npm version][npm_b]][npm_l]
[![Circle CI][circle_b]][circle_l]
[![npm downloads][dn_b]][dn_l]
[![Coverage Status][cov_b]][cov_l]
[![Codacy][cod_b]][cod_l]

MongoDB adapter for [js-data](http://www.js-data.io/).

### API Documentation
## API Documentation
[DSMongoDBAdapter](http://www.js-data.io/docs/dsmongodbadapter)

### Project Status

__Latest Release:__ [![Latest Release](https://img.shields.io/github/release/js-data/js-data-mongodb.svg?style=flat-square)](https://github.com/js-data/js-data-mongodb/releases)

__Status:__

[![Dependency Status](https://img.shields.io/gemnasium/js-data/js-data-mongodb.svg?style=flat-square)](https://gemnasium.com/js-data/js-data-mongodb) [![Codacity](https://img.shields.io/codacy/1f45ede49dfb4bdea68f46ca55631968.svg?style=flat-square)](https://www.codacy.com/public/jasondobry/js-data-mongodb/dashboard)

__Supported Platforms:__

[![node version](https://img.shields.io/badge/Node-0.10%2B-green.svg?style=flat-square)](https://github.com/js-data/js-data)

### Quick Start
## Quick Start
`npm install --save js-data js-data-mongodb`.

```js
Expand All @@ -41,60 +36,46 @@ var User = store.defineResource({
});
```

### Changelog
[CHANGELOG.md](https://github.com/js-data/js-data-mongodb/blob/master/CHANGELOG.md)
## Changelog
See [CHANGELOG.md](https://github.com/js-data/js-data-mongodb/blob/master/CHANGELOG.md).

### Community
- [Gitter Channel](https://gitter.im/js-data/js-data) - Better than IRC!
## Community
- [StackOverflow Channel][so]
- [Slack Chat][sl_l] [![Slack Status][sl_b]][sl_l]
- [Announcements](http://www.js-data.io/blog)
- [Mailing List](https://groups.io/org/groupsio/jsdata) - Ask your questions!
- [Issues](https://github.com/js-data/js-data-mongodb/issues) - Found a bug? Feature request? Submit an issue!
- [GitHub](https://github.com/js-data/js-data-mongodb) - View the source code for js-data.
- [Contributing Guide](https://github.com/js-data/js-data-mongodb/blob/master/CONTRIBUTING.md)

### Contributing

First, support is handled via the [Mailing List](https://groups.io/org/groupsio/jsdata). Ask your questions there.
- [Mailing List](ml)
- [Issue Tracker](https://github.com/js-data/js-data-mongodb/issues)

When submitting issues on GitHub, please include as much detail as possible to make debugging quick and easy.
## Support

- good - Your versions of js-data, js-data-mongodb, etc., relevant console logs/error, code examples that revealed the issue
- better - A [plnkr](http://plnkr.co/), [fiddle](http://jsfiddle.net/), or [bin](http://jsbin.com/?html,output) that demonstrates the issue
- best - A Pull Request that fixes the issue, including test coverage for the issue and the fix
Support questions are handled via [StackOverflow][so], [Slack][sl_l], and the
[Mailing List][ml]. Ask your questions there.

[Github Issues](https://github.com/js-data/js-data-mongodb/issues).
When submitting bug reports on GitHub, please include as much detail as possible
to make debugging quick and easy.

#### Pull Requests
## Contributing

1. Contribute to the issue that is the reason you'll be developing in the first place
1. Fork js-data-mongodb
1. `git clone https://github.com/<you>/js-data-mongodb.git`
1. `cd js-data-mongodb; npm install; bower install;`
1. `grunt go` (builds and starts a watch)
1. (in another terminal) `grunt karma:dev` (runs the tests)
1. Write your code, including relevant documentation and tests
1. Submit a PR and we'll review
See [CONTRIBUTING.md](https://github.com/js-data/js-data-mongodb/blob/master/CONTRIBUTING.md).

### License
## License

The MIT License (MIT)

Copyright (c) 2014-2015 Jason Dobry

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
See [LICENSE](https://github.com/js-data/js-data-mongodb/blob/master/LICENSE).

[sl_b]: http://slack.js-data.io/badge.svg
[sl_l]: http://slack.js-data.io
[npm_b]: https://img.shields.io/npm/v/js-data-mongodb.svg?style=flat
[npm_l]: https://www.npmjs.org/package/js-data-mongodb
[circle_b]: https://img.shields.io/circleci/project/js-data/js-data-mongodb/master.svg?style=flat
[circle_l]: https://circleci.com/gh/js-data/js-data-mongodb/tree/master
[dn_b]: https://img.shields.io/npm/dm/js-data-mongodb.svg?style=flat
[dn_l]: https://www.npmjs.org/package/js-data-mongodb
[cov_b]: https://img.shields.io/coveralls/js-data/js-data-mongodb/master.svg?style=flat
[cov_l]: https://coveralls.io/github/js-data/js-data-mongodb?branch=master
[cod_b]: https://img.shields.io/codacy/1f45ede49dfb4bdea68f46ca55631968.svg
[cod_l]: https://www.codacy.com/app/jasondobry/js-data-mongodb/dashboard

[ml]: https://groups.io/org/groupsio/jsdata
[so]: http://stackoverflow.com/questions/tagged/jsdata
8 changes: 6 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
machine:
node:
version: 4.1.0

test:
post:
- grunt coveralls || true
override:
- npm run ci
Loading

0 comments on commit a6e119a

Please sign in to comment.