json-rpc-objects 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/CHANGES.txt +4 -1
- data/VERSION +1 -1
- data/json-rpc-objects.gemspec +4 -4
- data/lib/json-rpc-objects/generic/object.rb +0 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0b47c2f93a7d487cb6b19878fe4d3aabac1ab8e
|
4
|
+
data.tar.gz: cf6bb339b47baf98c332f56e948724ae07e0286e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf13c56fc410c107821d9b5a60cbca7deaeaa972b9f8c18836893a9638946c6e9858b8d69efc1bffa983f33a86dfa5cfb28ae6e18863cb409af183b43975e1fd
|
7
|
+
data.tar.gz: 942262aed07063eca57293b7ba8da6d2d62ae16785d46852c81eeafdd3deed506aa8b6faa737f11de5f44c44327ef2bffddbdb35b7b9ee310aa918666d177c30
|
data/CHANGES.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
|
2
|
-
0.4.
|
2
|
+
0.4.6 (2015-12-16)
|
3
|
+
* removed debugging output removed
|
4
|
+
|
5
|
+
0.4.5 (2015-08-15)
|
3
6
|
* 'hash-utils' gem dependency removed
|
4
7
|
* JsonRpcObjects::V11::Error and JsonRpcObjects::V20::Error now throws
|
5
8
|
JsonRpcObjects::Exceptions::InvalidCode in case of invalid error code
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.6
|
data/json-rpc-objects.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: json-rpc-objects 0.4.
|
5
|
+
# stub: json-rpc-objects 0.4.6 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "json-rpc-objects"
|
9
|
-
s.version = "0.4.
|
9
|
+
s.version = "0.4.6"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["Martin Poljak"]
|
14
|
-
s.date = "2015-
|
14
|
+
s.date = "2015-12-16"
|
15
15
|
s.email = "martin@poljak.cz"
|
16
16
|
s.extra_rdoc_files = [
|
17
17
|
"LICENSE.txt",
|
@@ -81,7 +81,7 @@ Gem::Specification.new do |s|
|
|
81
81
|
]
|
82
82
|
s.homepage = "http://github.com/martinkozak/json-rpc-objects"
|
83
83
|
s.licenses = ["MIT"]
|
84
|
-
s.rubygems_version = "2.4.5"
|
84
|
+
s.rubygems_version = "2.4.5.1"
|
85
85
|
s.summary = "Implementation of JSON-RPC objects with respect to specifications compliance and API backward compatibility. Implements all versions of the protocol and support for ability to communicate by the same protocol version which other side uses by a transparent way."
|
86
86
|
|
87
87
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: json-rpc-objects
|
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
|
- Martin Poljak
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -210,7 +210,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
210
210
|
version: '0'
|
211
211
|
requirements: []
|
212
212
|
rubyforge_project:
|
213
|
-
rubygems_version: 2.4.5
|
213
|
+
rubygems_version: 2.4.5.1
|
214
214
|
signing_key:
|
215
215
|
specification_version: 4
|
216
216
|
summary: Implementation of JSON-RPC objects with respect to specifications compliance
|