ia-redis-rpc 2.0.0.pre.dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/CHANGELOG.markdown +79 -0
- data/Gemfile +3 -0
- data/LICENSE +674 -0
- data/README.markdown +164 -0
- data/Rakefile +7 -0
- data/VERSION +1 -0
- data/build-and-publish.sh +2 -0
- data/docs/github-flavored-markdown.rb +65 -0
- data/docs/redisrpc_example.ai +1075 -1
- data/docs/redisrpc_example.png +0 -0
- data/docs/redisrpc_example.svg +329 -0
- data/examples/calc.rb +32 -0
- data/examples/client.rb +39 -0
- data/examples/server.rb +12 -0
- data/lib/redis-rpc/version.rb +3 -0
- data/lib/redis-rpc.rb +204 -0
- data/redis-rpc.gemspec +44 -0
- data/spec/calculator_spec.rb +62 -0
- data/spec/client_spec.rb +26 -0
- data/spec/kwargs_spec.rb +32 -0
- data/spec/redis-test.conf +3 -0
- data/spec/server_spec.rb +18 -0
- data/spec/spec_helper.rb +53 -0
- metadata +161 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e100cf545ffbc90a79ab59ac0fc9386627b24d74ceb524ba0537357975fb3e38
|
4
|
+
data.tar.gz: 238d7c1299aa3cc24fb94cc783fa81a0f7dfd223f2612e2fa5c4ebbe30e8233c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3563aa1e79e727c406cce2971ec0a402277df1fd264d42e6aeabe0b49e212453911e08cec1abd59edf9736bc4592dc92bf12336f6788e56ecd3c771dd5fe3a40
|
7
|
+
data.tar.gz: 642146ffe8c4a043f9454a4f978e374656752bd99a15359fe33669cccb7e91d7b3fda4a9f2bdc8a301370bf68d120b0c0c759c459cf7f89276fe4bc473d85954
|
data/.gitignore
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
README.html
|
2
|
+
# Ruby
|
3
|
+
.rvmrc
|
4
|
+
*.gem
|
5
|
+
ruby/lib/redisrpc/version.rb
|
6
|
+
# PHP
|
7
|
+
composer.lock
|
8
|
+
composer.phar
|
9
|
+
php/vendor
|
10
|
+
# Python
|
11
|
+
*.pyc
|
12
|
+
python/.tox
|
13
|
+
python/LICENSE
|
14
|
+
python/README.rst
|
15
|
+
python/VERSION
|
16
|
+
python/build
|
17
|
+
python/dist
|
18
|
+
python/redisrpc.egg-info
|
19
|
+
python/redis-server.log
|
data/CHANGELOG.markdown
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
Changelog
|
2
|
+
----------
|
3
|
+
Version 1.0.0
|
4
|
+
|
5
|
+
* Now we only have ruby
|
6
|
+
|
7
|
+
Version 0.3.5
|
8
|
+
|
9
|
+
* Ruby: feature: use multi_json gem [Ryan Biesemeyer]
|
10
|
+
* Ruby: feature: server.run! flushes queue but server.run does not [Ryan Biesemeyer]
|
11
|
+
* Ruby: performance: only one call to rand instead of eight [Ryan Biesemeyer]
|
12
|
+
* Ruby: bugfix: RedisRpc::VERSION [Ryan Biesemeyer]
|
13
|
+
* Ruby: security: remove eval [Ryan Biesemeyer]
|
14
|
+
|
15
|
+
Version 0.3.4
|
16
|
+
|
17
|
+
* Client now supports optional timeout.
|
18
|
+
* Server now deletes message queue when starting.
|
19
|
+
* PHP: Fixed exception handling.
|
20
|
+
|
21
|
+
Version 0.3.3
|
22
|
+
|
23
|
+
* Ruby: Added a Ruby library implementation.
|
24
|
+
|
25
|
+
Version 0.3.2
|
26
|
+
|
27
|
+
* Fixed some formatting in README.markdown that was causing problems when
|
28
|
+
converted to reStructredText.
|
29
|
+
* Added version information to README.markdown.
|
30
|
+
* Added installation instructions to README.markdown.
|
31
|
+
* Python: Added RPC message logging using the logging module.
|
32
|
+
* Python: Added redis as an installation dependency.
|
33
|
+
* Python: Now using Distribute instead of distutils.
|
34
|
+
|
35
|
+
Version 0.3.1
|
36
|
+
|
37
|
+
* PHP: Changed composer.json predis dependency version.
|
38
|
+
|
39
|
+
Version 0.3.0
|
40
|
+
|
41
|
+
* Empty function call args and kwargs are no longer transmitted.
|
42
|
+
* PHP: Added support for the PHP language.
|
43
|
+
* PHP: Now installable with PHP Composer.
|
44
|
+
* Python: Shortened the Client and Server class names.
|
45
|
+
* Python: Debugging modified to print JSON representation.
|
46
|
+
* Python: Switched the README file back to ReStructred Text.
|
47
|
+
|
48
|
+
Version 0.2.1
|
49
|
+
|
50
|
+
* Python: Fixed MANIFEST.in to reflect filename changes.
|
51
|
+
|
52
|
+
Version 0.2.0
|
53
|
+
|
54
|
+
* Simplified the JSON RPC message format.
|
55
|
+
* Documented the JSON RPC message format.
|
56
|
+
* Python: Using HTML file for README, will it work?
|
57
|
+
* Python: Renamed calc_client to client.py.
|
58
|
+
* Python: Renamed calc_server to server.py.
|
59
|
+
* Python: Added a RemoteException class, which can be raised by the client.
|
60
|
+
|
61
|
+
Version 0.1.2
|
62
|
+
|
63
|
+
* Python: Fixed the download_url in setup.py.
|
64
|
+
* Python: Renamed the README file to README.rst to support browsing on Github.
|
65
|
+
|
66
|
+
Version 0.1.1
|
67
|
+
|
68
|
+
* Python: Added README.
|
69
|
+
* Python: Added long_description to setup.py.
|
70
|
+
* Python: Added MANIFEST.in file.
|
71
|
+
* Python: Added examples/ subdirectory to MANIFEST.
|
72
|
+
* Python: Modified examples/ directory to be consistent with README file.
|
73
|
+
* Python: Fixed the download_url in setup.py.
|
74
|
+
|
75
|
+
Version 0.1.0
|
76
|
+
|
77
|
+
* Changed to the GPL license.
|
78
|
+
* Python: Removed unused functionality from python/redisrpc.py.
|
79
|
+
* Python: Added a setup.py installer script.
|
data/Gemfile
ADDED