redis-rpc 1.0.0 → 1.0.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: 7931194f1cb1443ef049e2382a763f1da85189a6
4
- data.tar.gz: d7608dc49c791d2587ac1c73a9aa254ff770f893
3
+ metadata.gz: 8b39d936035d3ed70f13c3b547a77964d30622ae
4
+ data.tar.gz: 450f0a57a5a00d61ba149e0d811b5df3d2920b2a
5
5
  SHA512:
6
- metadata.gz: 674766c8c485d5bba0ed72bcfe9519411697acb8281ab419186da02ea4ee5a03b9dd1242416073e3541cc60fdea12fea7631523c7b8ee32efc6cc938197a7f36
7
- data.tar.gz: a9743fa7fbb4eac71e89fd7f72c949934a8b3149e221816f447fbeda3f53c19f8a0288990c8b197a497d2a46e8af2c4999429959d61bbd262957874b53461f2d
6
+ metadata.gz: 647e5f0e65306e8ccd535a44cf66cd340d3a1b91f0b7b053086f7d4c070431af7eda4881dd600c29c81f06d4b28d3d1b32a0fa6f460ead41678e5a331c42ffaf
7
+ data.tar.gz: 30a6301bc1d7557846c9b9111c1d965f89476c0dfbf35a5e398828b16d9669bc58a4d2a832f67c3f62fe56dde6f6122d9fbb447e947088913e6f32e766269e19
data/README.markdown CHANGED
@@ -1,10 +1,13 @@
1
1
  RedisRpc
2
2
  ========
3
3
 
4
- by Nathan Farrington
4
+ originated by Nathan Farrington
5
5
  <http://nathanfarrington.com>
6
6
 
7
- RedisRpc is the easiest to use RPC library in the world. (No small claim!). This repo only has Ruby implementations
7
+ RedisRpc is the easiest to use RPC library in the world. (No small claim!).
8
+
9
+ repackaged by Phuong Nguyen
10
+ This repo only has Ruby implementations
8
11
 
9
12
  Introduction
10
13
  ------------
@@ -31,7 +34,7 @@ of a mutable calculator object. The clients and servers from different
31
34
  languages are interoperable.
32
35
 
33
36
  <img
34
- src="http://github.com/nfarring/redisrpc/raw/master/docs/redisrpc_example.png"
37
+ src="https://github.com/phuongnd08/redis-rpc-ruby/raw/master/docs/redisrpc_example.png"
35
38
  width=438 height=238>
36
39
 
37
40
  1. The client issues an RPC Request by using the Redis `RPUSH` command to push
@@ -88,7 +91,7 @@ Installation
88
91
  The [redis-rb][redis-rb] library is required. Install using RubyGems:
89
92
 
90
93
  ```ruby
91
- gem install redisrpc
94
+ gem install redis-rpc
92
95
  ```
93
96
 
94
97
  Internal Message Formats
data/examples/client.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  require 'redis'
4
4
 
5
- require File.expand_path('../../lib/redisrpc', __FILE__)
5
+ require File.expand_path('../../lib/redis-rpc', __FILE__)
6
6
  require File.expand_path('../calc', __FILE__)
7
7
 
8
8
  def assert(cond)
data/examples/server.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  require 'redis'
4
4
 
5
- require File.expand_path('../../lib/redisrpc', __FILE__)
5
+ require File.expand_path('../../lib/redis-rpc', __FILE__)
6
6
  require File.expand_path('../calc', __FILE__)
7
7
 
8
8
  redis_server = Redis.new
@@ -1,3 +1,3 @@
1
1
  module RedisRpc
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
data/redis-rpc.gemspec CHANGED
@@ -11,8 +11,8 @@ Gem::Specification.new do |s|
11
11
  s.homepage = 'http://github.com/phuongnd08/redis-rpc-ruby'
12
12
  s.summary = 'Lightweight RPC for Redis'
13
13
  s.description = <<-DESCRIPTION
14
- RedisRpc is the easiest to use RPC library in the world. (No small claim!) It
15
- has implementations in Ruby, PHP, and Python.
14
+ RedisRpc is the easiest to use RPC library in the world. (No small claim!).
15
+ This version is a repackage that only has Ruby implementation.
16
16
 
17
17
  Redis is a powerful in-memory data structure server that is useful for building
18
18
  fast distributed systems. Redis implements message queue functionality with its
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis-rpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phuong Nguyen
@@ -82,8 +82,8 @@ dependencies:
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  description: |2
85
- RedisRpc is the easiest to use RPC library in the world. (No small claim!) It
86
- has implementations in Ruby, PHP, and Python.
85
+ RedisRpc is the easiest to use RPC library in the world. (No small claim!).
86
+ This version is a repackage that only has Ruby implementation.
87
87
 
88
88
  Redis is a powerful in-memory data structure server that is useful for building
89
89
  fast distributed systems. Redis implements message queue functionality with its