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 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
@@ -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
@@ -0,0 +1,3 @@
1
+ source :rubygems
2
+
3
+ gemspec