celluloid_pubsub 0.4.5 → 0.4.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +26 -0
- data/README.md +1 -1
- data/lib/celluloid_pubsub/redis_reactor.rb +2 -1
- data/lib/celluloid_pubsub/version.rb +1 -1
- metadata +2 -2
- data/Guardfile +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ff21ab438002717c1981963a0d2a902072ee969
|
4
|
+
data.tar.gz: 75cfcd07cd1c00c2bc3cab6b7ca7b218326e3f32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24a3649f2f594b2dec6426f43ae21bb222fad01a80a147b71513113119a7a7e7bb2e9c7c44ba421b5bba6037efb78f6951a1d8a18b2f4f6b94d4d1efa342f5bd
|
7
|
+
data.tar.gz: 8c4b38d43f3f65fd836ef0acf14a2791b0c6c2d5744bc3b5b289346e23df2425ac719153893957c14a01481cfa85c70d5d3266cd5b0ef66b4d01e1364b1de94c
|
data/.codeclimate.yml
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
---
|
2
|
+
engines:
|
3
|
+
bundler-audit:
|
4
|
+
enabled: false
|
5
|
+
csslint:
|
6
|
+
enabled: false
|
7
|
+
eslint:
|
8
|
+
enabled: false
|
9
|
+
fixme:
|
10
|
+
enabled: true
|
11
|
+
rubocop:
|
12
|
+
enabled: true
|
13
|
+
ratings:
|
14
|
+
paths:
|
15
|
+
- Gemfile.lock
|
16
|
+
- "**.css"
|
17
|
+
- "**.js"
|
18
|
+
- "**.jsx"
|
19
|
+
- "**.rb"
|
20
|
+
exclude_paths:
|
21
|
+
- spec/**/*
|
22
|
+
- examples/**/*
|
23
|
+
- test/**/*
|
24
|
+
- vendor/**/*
|
25
|
+
- bin/**/*
|
26
|
+
- .codeclimate.yml
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
celluloid_pubsub
|
2
2
|
================
|
3
3
|
|
4
|
-
[![Gem Version](https://badge.fury.io/rb/celluloid_pubsub.svg)](http://badge.fury.io/rb/celluloid_pubsub) [![Build Status](https://travis-ci.org/bogdanRada/celluloid_pubsub.png?branch=master,develop)](https://travis-ci.org/bogdanRada/celluloid_pubsub) [![Coverage Status](https://coveralls.io/repos/bogdanRada/celluloid_pubsub/badge.svg?branch=master)](https://coveralls.io/r/bogdanRada/celluloid_pubsub?branch=master) [![Code Climate](https://codeclimate.com/github/bogdanRada/celluloid_pubsub/badges/gpa.svg)](https://codeclimate.com/github/bogdanRada/celluloid_pubsub) [![Repo Size](https://reposs.herokuapp.com/?path=bogdanRada/celluloid_pubsub)](https://github.com/bogdanRada/celluloid_pubsub) [![Gem Downloads](https://ruby-gem-downloads-badge.herokuapp.com/celluloid_pubsub?type=total&style=dynamic)](https://github.com/bogdanRada/celluloid_pubsub) [![Documentation Status](https://inch-ci.org/github/bogdanRada/celluloid_pubsub.svg?branch=master)](https://inch-ci.org/github/bogdanRada/celluloid_pubsubb) [![
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/celluloid_pubsub.svg)](http://badge.fury.io/rb/celluloid_pubsub) [![Build Status](https://travis-ci.org/bogdanRada/celluloid_pubsub.png?branch=master,develop)](https://travis-ci.org/bogdanRada/celluloid_pubsub) [![Coverage Status](https://coveralls.io/repos/bogdanRada/celluloid_pubsub/badge.svg?branch=master)](https://coveralls.io/r/bogdanRada/celluloid_pubsub?branch=master) [![Code Climate](https://codeclimate.com/github/bogdanRada/celluloid_pubsub/badges/gpa.svg)](https://codeclimate.com/github/bogdanRada/celluloid_pubsub) [![Repo Size](https://reposs.herokuapp.com/?path=bogdanRada/celluloid_pubsub)](https://github.com/bogdanRada/celluloid_pubsub) [![Gem Downloads](https://ruby-gem-downloads-badge.herokuapp.com/celluloid_pubsub?type=total&style=dynamic)](https://github.com/bogdanRada/celluloid_pubsub) [![Documentation Status](https://inch-ci.org/github/bogdanRada/celluloid_pubsub.svg?branch=master)](https://inch-ci.org/github/bogdanRada/celluloid_pubsubb) [![Analytics](https://ga-beacon.appspot.com/UA-72570203-1/bogdanRada/celluloid_pubsub)](https://github.com/bogdanRada/celluloid_pubsub)
|
5
5
|
|
6
6
|
Description
|
7
7
|
-----------
|
@@ -231,9 +231,10 @@ module CelluloidPubsub
|
|
231
231
|
#
|
232
232
|
# @api private
|
233
233
|
def register_subscription_callbacks(subscription, action, sucess_message = nil)
|
234
|
-
register_redis_callback(subscription,action, sucess_message)
|
234
|
+
register_redis_callback(subscription, action, sucess_message)
|
235
235
|
register_redis_error_callback(subscription, action)
|
236
236
|
end
|
237
|
+
|
237
238
|
# the method will return true if debug is enabled
|
238
239
|
#
|
239
240
|
#
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: celluloid_pubsub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bogdanRada
|
@@ -398,6 +398,7 @@ executables: []
|
|
398
398
|
extensions: []
|
399
399
|
extra_rdoc_files: []
|
400
400
|
files:
|
401
|
+
- ".codeclimate.yml"
|
401
402
|
- ".coveralls.yml"
|
402
403
|
- ".gitignore"
|
403
404
|
- ".reek"
|
@@ -406,7 +407,6 @@ files:
|
|
406
407
|
- ".travis.yml"
|
407
408
|
- CONTRIBUTING.md
|
408
409
|
- Gemfile
|
409
|
-
- Guardfile
|
410
410
|
- LICENSE
|
411
411
|
- README.md
|
412
412
|
- Rakefile
|
data/Guardfile
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
# More info at https://github.com/guard/guard#readme
|
2
|
-
|
3
|
-
# Could be changed to whatever you want.
|
4
|
-
# See: https://github.com/guard/guard#notification
|
5
|
-
notification :off
|
6
|
-
|
7
|
-
guard 'rspec' do
|
8
|
-
watch %r{^spec/.+_spec\.rb$}
|
9
|
-
watch %r{lib/} do 'spec' end
|
10
|
-
end
|
11
|
-
|
12
|
-
# vim:ft=ruby
|
13
|
-
|
14
|
-
guard :inch do
|
15
|
-
watch(/.+\.rb/)
|
16
|
-
end
|