This is an automated email from the ASF dual-hosted git repository. dinglei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/rocketmq-client-nodejs.git
commit c54f93be167e414e71bd2c46290a0b7baf52ee68 Merge: 2a77e4f e14e4e5 Author: dinglei <[email protected]> AuthorDate: Mon Jan 14 15:38:23 2019 +0800 Merge pull request #7 from XadillaX/headers chore(license): add apache license to source code .eslintrc | 5 ----- .eslintrc.js | 23 +++++++++++++++++++++++ .gitignore | 18 ++++++++++++++---- binding.gyp | 15 +++++++++++++++ example/common.js | 16 ++++++++++++++++ example/producer.js | 16 ++++++++++++++++ example/push_consumer.js | 16 ++++++++++++++++ index.js | 16 ++++++++++++++++ lib/common.js | 16 ++++++++++++++++ lib/env_init.js | 16 ++++++++++++++++ lib/producer.js | 16 ++++++++++++++++ lib/push_consumer.js | 16 ++++++++++++++++ script/download_lib.js | 16 ++++++++++++++++ script/get_linux_distro_route.js | 16 ++++++++++++++++ src/consumer_ack.cpp | 18 +++++++++++++++++- src/consumer_ack.h | 18 +++++++++++++++++- src/consumer_ack_inner.cpp | 16 ++++++++++++++++ src/consumer_ack_inner.h | 18 +++++++++++++++++- src/producer.cpp | 16 ++++++++++++++++ src/producer.h | 16 ++++++++++++++++ src/push_consumer.cpp | 16 ++++++++++++++++ src/push_consumer.h | 16 ++++++++++++++++ src/rocketmq.cpp | 16 ++++++++++++++++ src/workers/producer/send_message.h | 16 ++++++++++++++++ src/workers/producer/start_or_shutdown.h | 16 ++++++++++++++++ src/workers/push_consumer/start_or_shutdown.h | 16 ++++++++++++++++ 26 files changed, 407 insertions(+), 12 deletions(-) diff --cc .gitignore index 1a90945,89f2fff..a50fd0b --- a/.gitignore +++ b/.gitignore @@@ -1,10 -1,18 +1,22 @@@ - # Created by https://www.gitignore.io/api/c++,node,linux,macos,windows - # Edit at https://www.gitignore.io/?templates=c++,node,linux,macos,windows + # 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. +### IDE ### +.idea +idea/* + ### C++ ### # Prerequisites *.d
