Skip to content

Commit a6e119a

Browse files
committed
Stable Version 0.6.0
1 parent 14557d6 commit a6e119a

25 files changed

+661
-1203
lines changed

.babelrc

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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ node_modules
3131
*.iml
3232

3333
data/
34+
doc/

.jshintrc

Lines changed: 0 additions & 33 deletions
This file was deleted.

.npmignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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+
27+
# Users Environment Variables
28+
.lock-wscript
29+
30+
.idea/
31+
*.iml
32+
33+
data/
34+
doc/
35+
test/
36+
.babelrc
37+
webpack.config.js
38+
circle.yml

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
##### 0.6.0 - 18 February 2016
2+
3+
- Upgraded dependencies
4+
- Now using js-data-adapter-tests
5+
16
##### 0.5.1 - 10 July 2015
27

38
###### Backwards compatible bug fixes

CONTRIBUTING.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Contributing Guide
22

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

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

@@ -20,3 +21,7 @@ When submitting issues on GitHub, please include as much detail as possible to m
2021
1. (in another terminal) `grunt karma:dev` (runs the tests)
2122
1. Write your code, including relevant documentation and tests
2223
1. Submit a PR and we'll review
24+
25+
[slack]: http://slack.js-data.io
26+
[ml]: https://groups.io/org/groupsio/jsdata
27+
[so]: http://stackoverflow.com/questions/tagged/jsdata

Gruntfile.js

Lines changed: 0 additions & 82 deletions
This file was deleted.

README.md

Lines changed: 43 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,20 @@
1-
<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" />
1+
<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" />
22

3-
## 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)
3+
# js-data-mongodb
4+
5+
[![Slack Status][sl_b]][sl_l]
6+
[![npm version][npm_b]][npm_l]
7+
[![Circle CI][circle_b]][circle_l]
8+
[![npm downloads][dn_b]][dn_l]
9+
[![Coverage Status][cov_b]][cov_l]
10+
[![Codacy][cod_b]][cod_l]
411

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

7-
### API Documentation
14+
## API Documentation
815
[DSMongoDBAdapter](http://www.js-data.io/docs/dsmongodbadapter)
916

10-
### Project Status
11-
12-
__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)
13-
14-
__Status:__
15-
16-
[![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)
17-
18-
__Supported Platforms:__
19-
20-
[![node version](https://img.shields.io/badge/Node-0.10%2B-green.svg?style=flat-square)](https://github.com/js-data/js-data)
21-
22-
### Quick Start
17+
## Quick Start
2318
`npm install --save js-data js-data-mongodb`.
2419

2520
```js
@@ -41,60 +36,46 @@ var User = store.defineResource({
4136
});
4237
```
4338

44-
### Changelog
45-
[CHANGELOG.md](https://github.com/js-data/js-data-mongodb/blob/master/CHANGELOG.md)
39+
## Changelog
40+
See [CHANGELOG.md](https://github.com/js-data/js-data-mongodb/blob/master/CHANGELOG.md).
4641

47-
### Community
48-
- [Gitter Channel](https://gitter.im/js-data/js-data) - Better than IRC!
42+
## Community
43+
- [StackOverflow Channel][so]
44+
- [Slack Chat][sl_l] [![Slack Status][sl_b]][sl_l]
4945
- [Announcements](http://www.js-data.io/blog)
50-
- [Mailing List](https://groups.io/org/groupsio/jsdata) - Ask your questions!
51-
- [Issues](https://github.com/js-data/js-data-mongodb/issues) - Found a bug? Feature request? Submit an issue!
52-
- [GitHub](https://github.com/js-data/js-data-mongodb) - View the source code for js-data.
53-
- [Contributing Guide](https://github.com/js-data/js-data-mongodb/blob/master/CONTRIBUTING.md)
54-
55-
### Contributing
56-
57-
First, support is handled via the [Mailing List](https://groups.io/org/groupsio/jsdata). Ask your questions there.
46+
- [Mailing List](ml)
47+
- [Issue Tracker](https://github.com/js-data/js-data-mongodb/issues)
5848

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

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

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

67-
#### Pull Requests
57+
## Contributing
6858

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

78-
### License
61+
## License
7962

8063
The MIT License (MIT)
8164

82-
Copyright (c) 2014-2015 Jason Dobry
83-
84-
Permission is hereby granted, free of charge, to any person obtaining a copy
85-
of this software and associated documentation files (the "Software"), to deal
86-
in the Software without restriction, including without limitation the rights
87-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
88-
copies of the Software, and to permit persons to whom the Software is
89-
furnished to do so, subject to the following conditions:
90-
91-
The above copyright notice and this permission notice shall be included in all
92-
copies or substantial portions of the Software.
93-
94-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
95-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
96-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
97-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
98-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
99-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
100-
SOFTWARE.
65+
See [LICENSE](https://github.com/js-data/js-data-mongodb/blob/master/LICENSE).
66+
67+
[sl_b]: http://slack.js-data.io/badge.svg
68+
[sl_l]: http://slack.js-data.io
69+
[npm_b]: https://img.shields.io/npm/v/js-data-mongodb.svg?style=flat
70+
[npm_l]: https://www.npmjs.org/package/js-data-mongodb
71+
[circle_b]: https://img.shields.io/circleci/project/js-data/js-data-mongodb/master.svg?style=flat
72+
[circle_l]: https://circleci.com/gh/js-data/js-data-mongodb/tree/master
73+
[dn_b]: https://img.shields.io/npm/dm/js-data-mongodb.svg?style=flat
74+
[dn_l]: https://www.npmjs.org/package/js-data-mongodb
75+
[cov_b]: https://img.shields.io/coveralls/js-data/js-data-mongodb/master.svg?style=flat
76+
[cov_l]: https://coveralls.io/github/js-data/js-data-mongodb?branch=master
77+
[cod_b]: https://img.shields.io/codacy/1f45ede49dfb4bdea68f46ca55631968.svg
78+
[cod_l]: https://www.codacy.com/app/jasondobry/js-data-mongodb/dashboard
79+
80+
[ml]: https://groups.io/org/groupsio/jsdata
81+
[so]: http://stackoverflow.com/questions/tagged/jsdata

circle.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
machine:
2+
node:
3+
version: 4.1.0
4+
15
test:
2-
post:
3-
- grunt coveralls || true
6+
override:
7+
- npm run ci

0 commit comments

Comments
 (0)