philote 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83d0f685634d24a1933c7b4f1b24f8f2522b75de
4
- data.tar.gz: b35d3bbfa5239de1afdf3494ba7568fa8be9fadf
3
+ metadata.gz: 29d227ab9404508ff3f05753d914e594fc627ab1
4
+ data.tar.gz: 31e2a898cc6df11fc83b6234c0cd2a8a42dc119a
5
5
  SHA512:
6
- metadata.gz: 981e71e46ee073dea63e67f1d5d0dca72ef3afcd8c46a1ca08561ecf426f1ea59be43c12bf9ef193195b282892082b72fba8e88a8b5eb0189b499e90e83d7d47
7
- data.tar.gz: 2a0dd3137c8da5ea54e9331350deaa8701bd3ab25ea8f030dff9b9857dd3a19d04c8e6f7af18a29627c83d179dbe7b168366fa3166f0f9bdb918b811c9748b87
6
+ metadata.gz: 895fc14fdcb6cfbdcb0cee6fe222be13ef7db7431b9c4ce6a17f14e2a3bd5ea9dd3f08b5370b222168aaf7b455769bab77f302b61f9839d2dc2966311e1fd4b6
7
+ data.tar.gz: d6dfb4f854509cde4b120176e0b55ce11379bec6033df60fce640f978bb7666db95a9ac9b30fb5fe8195ceba6b5b1c73cd482b5bf02b1031395d5e94c1408b7b
@@ -1,5 +1,4 @@
1
- ### The Soveran Contribution Guidelines.
2
- (taken from some project at https://github.com/soveran)
1
+ ## The [Soveran](https://github.com/soveran) Contribution Guidelines.
3
2
 
4
3
  This code tries to solve a particular problem with a very simple
5
4
  implementation. We try to keep the code to a minimum while making
data/README.md CHANGED
@@ -16,7 +16,6 @@ This library is still on very early stages, it does something extremely simple s
16
16
  By default, Philote connects to Redis using the `REDIS_URL` environment variable, if you want to connect in a different way you can specify the redis client in code when you initialize your application.
17
17
 
18
18
  ```ruby
19
-
20
19
  require 'redic'
21
20
  require 'philote'
22
21
 
@@ -20,7 +20,7 @@ module Philote
20
20
  end
21
21
 
22
22
  def self.publish(channel, data)
23
- redis.call('PUBLISH', channel, data)
23
+ redis.call('PUBLISH', "philote:channel:#{channel}", data)
24
24
  end
25
25
 
26
26
  class AccessKey
@@ -1,3 +1,3 @@
1
1
  module Philote
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philote
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - pote
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-26 00:00:00.000000000 Z
11
+ date: 2016-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redic