Merge branch 'release/1.0.2' into production
This commit is contained in:
commit
7f41ef9587
|
@ -1,65 +1,24 @@
|
||||||
|
|
||||||
### Contributing ###
|
### Contributing ###
|
||||||
|
|
||||||
Thank you for your interest in `loopback-connector-remote`, an open source project
|
Thank you for your interest in `loopback-connector-remote`, an open source project
|
||||||
administered by StrongLoop.
|
administered by StrongLoop.
|
||||||
|
|
||||||
Contributing to loopback is easy. In a few simple steps:
|
Contributing to `loopback-connector-remote` is easy. In a few simple steps:
|
||||||
|
|
||||||
* Ensure that your effort is aligned with the project’s roadmap by
|
* Ensure that your effort is aligned with the project's roadmap by
|
||||||
talking to the maintainers, especially if you are going to spend a
|
talking to the maintainers, especially if you are going to spend a
|
||||||
lot of time on it. This project is currently maintained by
|
lot of time on it.
|
||||||
[@ritch](https://github.com/ritch), [@raymondfeng](https://github.com/raymondfeng),
|
|
||||||
and [@bajtos](https://github.com/bajtos). The preferred channel of communication
|
|
||||||
is [LoopBack Forum](https://groups.google.com/forum/#!forum/loopbackjs) or
|
|
||||||
[Github Issues](https://github.com/strongloop/loopback/issues).
|
|
||||||
|
|
||||||
* Make something better or fix a bug.
|
* Make something better or fix a bug.
|
||||||
|
|
||||||
* Adhere to code style outlined in the
|
* Adhere to code style outlined in the [Google C++ Style Guide][] and
|
||||||
[Google Javascript Style Guide][].
|
[Google Javascript Style Guide][].
|
||||||
|
|
||||||
* [Sign your patches](#signing-patches) to indicate that your are
|
* Sign the [Contributor License Agreement](https://cla.strongloop.com/strongloop/loopback-connector-remote)
|
||||||
making your contribution available under the terms of the
|
|
||||||
[Contributor License Agreement](#contributor-license-agreement).
|
|
||||||
|
|
||||||
* Submit a pull request through Github.
|
* Submit a pull request through Github.
|
||||||
|
|
||||||
|
|
||||||
### Signing patches ###
|
|
||||||
|
|
||||||
Like many open source projects, we need a contributor license agreement
|
|
||||||
from you before we can merge in your changes.
|
|
||||||
|
|
||||||
In summary, by submitting your code, you are granting us a right to use
|
|
||||||
that code under the terms of this Agreement, including providing it to
|
|
||||||
others. You are also certifying that you wrote it, and that you are
|
|
||||||
allowed to license it to us. You are not giving up your copyright in
|
|
||||||
your work. The license does not change your rights to use your own
|
|
||||||
contributions for any other purpose.
|
|
||||||
|
|
||||||
Contributor License Agreements are important because they define the
|
|
||||||
chain of ownership of a piece of software. Some companies won't allow
|
|
||||||
the use of free software without clear agreements around code ownership.
|
|
||||||
That's why many open source projects collect similar agreements from
|
|
||||||
contributors. The CLA here is based on the Apache CLA.
|
|
||||||
|
|
||||||
To signify your agreement to these terms, add the following line to the
|
|
||||||
bottom of your commit message. Use your real name and an actual e-mail
|
|
||||||
address.
|
|
||||||
|
|
||||||
```
|
|
||||||
Signed-off-by: Random J Developer <random@developer.example.org>
|
|
||||||
```
|
|
||||||
|
|
||||||
Alternatively you can use the git command line to automatically add this
|
|
||||||
line, as follows:
|
|
||||||
|
|
||||||
```
|
|
||||||
$ git commit -sm "Replace rainbows by unicorns"
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
### Contributor License Agreement ###
|
### Contributor License Agreement ###
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -188,7 +147,5 @@ $ git commit -sm "Replace rainbows by unicorns"
|
||||||
inaccurate in any respect. Email us at callback@strongloop.com.
|
inaccurate in any respect. Email us at callback@strongloop.com.
|
||||||
```
|
```
|
||||||
|
|
||||||
|
[Google C++ Style Guide]: https://google-styleguide.googlecode.com/svn/trunk/cppguide.xml
|
||||||
[Google Javascript Style Guide]: https://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml
|
[Google Javascript Style Guide]: https://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml
|
||||||
[license]: LICENSE
|
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ RemoteConnector.initialize = function(dataSource, callback) {
|
||||||
var connector = dataSource.connector =
|
var connector = dataSource.connector =
|
||||||
new RemoteConnector(dataSource.settings);
|
new RemoteConnector(dataSource.settings);
|
||||||
connector.connect();
|
connector.connect();
|
||||||
setImmediate(callback);
|
process.nextTick(callback);
|
||||||
};
|
};
|
||||||
|
|
||||||
RemoteConnector.prototype.define = function(definition) {
|
RemoteConnector.prototype.define = function(definition) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "loopback-connector-remote",
|
"name": "loopback-connector-remote",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"description": "Remote REST API connector for Loopback",
|
"description": "Remote REST API connector for Loopback",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
Loading…
Reference in New Issue