Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C3EF3181A8 for ; Mon, 8 Jun 2015 11:21:44 +0000 (UTC) Received: (qmail 90173 invoked by uid 500); 8 Jun 2015 11:21:44 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 90144 invoked by uid 500); 8 Jun 2015 11:21:44 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 90135 invoked by uid 99); 8 Jun 2015 11:21:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jun 2015 11:21:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 08 Jun 2015 11:19:33 +0000 Received: (qmail 86494 invoked by uid 99); 8 Jun 2015 11:20:00 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jun 2015 11:20:00 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 86CDCDFF72; Mon, 8 Jun 2015 11:20:00 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.incubator.apache.org Date: Mon, 08 Jun 2015 11:20:01 -0000 Message-Id: <62b321e75d29415b8936186b87322e25@git.apache.org> In-Reply-To: <25dc0924181b4994b77e3bdbde444db2@git.apache.org> References: <25dc0924181b4994b77e3bdbde444db2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] incubator-ignite git commit: #nodejs: small fixes X-Virus-Checked: Checked by ClamAV on apache.org #nodejs: small fixes Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/551b713a Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/551b713a Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/551b713a Branch: refs/heads/ignite-nodejs Commit: 551b713a3cae755b501fbf3dceba516cb6c6ff61 Parents: 86ba5d9 Author: ivasilinets Authored: Mon Jun 8 14:19:47 2015 +0300 Committer: ivasilinets Committed: Mon Jun 8 14:19:47 2015 +0300 ---------------------------------------------------------------------- modules/nodejs/src/main/js/apache-ignite.js | 22 ++++++++++++++++++++++ modules/nodejs/src/main/js/apache_ignite.js | 22 ---------------------- modules/nodejs/src/main/js/package.json | 5 +++-- 3 files changed, 25 insertions(+), 24 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/551b713a/modules/nodejs/src/main/js/apache-ignite.js ---------------------------------------------------------------------- diff --git a/modules/nodejs/src/main/js/apache-ignite.js b/modules/nodejs/src/main/js/apache-ignite.js new file mode 100644 index 0000000..c20e3dd --- /dev/null +++ b/modules/nodejs/src/main/js/apache-ignite.js @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +module.exports = { + Cache : require('./cache.js').Cache, + Ignition : require('./ignition.js').Ignition, + Server : require('./server.js').Server +} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/551b713a/modules/nodejs/src/main/js/apache_ignite.js ---------------------------------------------------------------------- diff --git a/modules/nodejs/src/main/js/apache_ignite.js b/modules/nodejs/src/main/js/apache_ignite.js deleted file mode 100644 index c20e3dd..0000000 --- a/modules/nodejs/src/main/js/apache_ignite.js +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -module.exports = { - Cache : require('./cache.js').Cache, - Ignition : require('./ignition.js').Ignition, - Server : require('./server.js').Server -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/551b713a/modules/nodejs/src/main/js/package.json ---------------------------------------------------------------------- diff --git a/modules/nodejs/src/main/js/package.json b/modules/nodejs/src/main/js/package.json index e4fab0a..7efc4e2 100644 --- a/modules/nodejs/src/main/js/package.json +++ b/modules/nodejs/src/main/js/package.json @@ -6,8 +6,9 @@ "name": "Irina Vasilinets", "email": "ivasilients@gridgain.com" }], - "main" : "apache_ignite.js", + "main" : "apache-ignite.js", "license" : "Apache-2.0", "keywords" : "grid", - "homepage" : "https://ignite.incubator.apache.org/" + "homepage" : "https://ignite.incubator.apache.org/", + "engines" : { "node" : ">=0.12.4" } } \ No newline at end of file