Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix BRPOP #1

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
engines:
coffeelint:
enabled: true

ratings:
paths:
- src/**

exclude_paths:
- test/**/*
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

.DS_Store
node_modules
node_modules
coverage
34 changes: 34 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# 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
meshblu.json
tmp
devices
.npmrc
*.sublime-workspace
.git
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
language: node_js
node_js:
- '5'

deploy:
provider: npm
email: [email protected]
api_key:
secure: LEihI84wv50wPLf8Ob2q9YNRo1znpi+t7ok9xdCxpeNZ6OyHLv0kswJFwrHh80Z5kKmhV/TOrGdvcZTNTR4p0K2begmiASW38h1vSqvq6NeqacBKRx4k/yqB4SN3QdB2q9xJ+22ZJb08jm3Y7P6poJJ2W9QpY3n5bKG0jlddmjdmqOdol7JUZx9K2n7alL4+/yhC2MiVZbn7Ou2M/MqXV1YExa+jMQcNpzRKhUK07Y4wog5eA1EM+S9+iTan6fW8ZdScIl/BxAm7HZfWfF+oHyyWwDPec6FHQczR4n25/0w13AvXevxkF4ofQgG32JjJpXNCf5LryBe9l9pjFJP3NRmCxrt3wy9lZ0tdY1LcymlT6eUN3g2F9Nj7TmNHojH5EANeVH8d/UEvdluVgU55Vawh+SemPWUc/IHSptuN8HqvUNE4aR1dfxbXaF1bvztiglgHiAEWBQrKuCXx3sLqAe5Wu4Ja8joyzn6sumvP6V1rOdTRQb4taFr/NpLCZ2gVi/ZmfU53TjUx9JwXOsK1whkTiCGP5KgKmdgVAoYD/Pdcw5LPd3hdyLvBKpZHH6qfL6c7Lo9Wq+aM2j5Z7GMQOr/HjD4Z03B1o2ygGW/SdKFhoR6DDuL8+HTIAqicQ8heEjEB0hV3SelY5URcXLQOxcV7hSxlfIhfH8If9PzelP4=
on:
tags: true
branches: true
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,9 @@ Until then: Feel free to play around with it, learn from it.

npm install redis-ns


[![Build Status](https://travis-ci.org/octoblu/redis-ns.svg?branch=master)](https://travis-ci.org/octoblu/redis-ns)
[![Code Climate](https://codeclimate.com/github/octoblu/redis-ns/badges/gpa.svg)](https://codeclimate.com/github/octoblu/redis-ns)
[![Test Coverage](https://codeclimate.com/github/octoblu/redis-ns/badges/coverage.svg)](https://codeclimate.com/github/octoblu/redis-ns)
[![npm version](https://badge.fury.io/js/redis-ns.svg)](http://badge.fury.io/js/redis-ns)
[![Gitter](https://badges.gitter.im/octoblu/help.svg)](https://gitter.im/octoblu/help)
135 changes: 135 additions & 0 deletions coffeelint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
{
"arrow_spacing": {
"level": "ignore"
},
"braces_spacing": {
"level": "ignore",
"spaces": 0,
"empty_object_spaces": 0
},
"camel_case_classes": {
"level": "error"
},
"coffeescript_error": {
"level": "error"
},
"colon_assignment_spacing": {
"level": "ignore",
"spacing": {
"left": 0,
"right": 0
}
},
"cyclomatic_complexity": {
"value": 10,
"level": "warn"
},
"duplicate_key": {
"level": "error"
},
"empty_constructor_needs_parens": {
"level": "ignore"
},
"ensure_comprehensions": {
"level": "warn"
},
"eol_last": {
"level": "ignore"
},
"indentation": {
"value": 2,
"level": "error"
},
"line_endings": {
"level": "ignore",
"value": "unix"
},
"max_line_length": {
"value": 120,
"level": "error",
"limitComments": true
},
"missing_fat_arrows": {
"level": "ignore",
"is_strict": false
},
"newlines_after_classes": {
"value": 3,
"level": "ignore"
},
"no_backticks": {
"level": "error"
},
"no_debugger": {
"level": "warn",
"console": false
},
"no_empty_functions": {
"level": "ignore"
},
"no_empty_param_list": {
"level": "ignore"
},
"no_implicit_braces": {
"level": "ignore",
"strict": true
},
"no_implicit_parens": {
"strict": true,
"level": "ignore"
},
"no_interpolation_in_single_quotes": {
"level": "ignore"
},
"no_nested_string_interpolation": {
"level": "warn"
},
"no_plusplus": {
"level": "ignore"
},
"no_private_function_fat_arrows": {
"level": "warn"
},
"no_stand_alone_at": {
"level": "ignore"
},
"no_tabs": {
"level": "error"
},
"no_this": {
"level": "ignore"
},
"no_throwing_strings": {
"level": "error"
},
"no_trailing_semicolons": {
"level": "error"
},
"no_trailing_whitespace": {
"level": "error",
"allowed_in_comments": false,
"allowed_in_empty_lines": true
},
"no_unnecessary_double_quotes": {
"level": "ignore"
},
"no_unnecessary_fat_arrows": {
"level": "ignore"
},
"non_empty_constructor_needs_parens": {
"level": "ignore"
},
"prefer_english_operator": {
"level": "ignore",
"doubleNotLevel": "ignore"
},
"space_operators": {
"level": "ignore"
},
"spacing_after_comma": {
"level": "ignore"
},
"transform_messes_up_line_numbers": {
"level": "warn"
}
}
Loading