arachni-rpc 0.2.1.1 → 0.2.1.2

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: c9338fadd2f318fbd412a23249940f20ac3bd141
4
- data.tar.gz: 7b50f79bd0fc3c6c75ecb0e63c589abf35504098
3
+ metadata.gz: ba78631459aab63d1b5aae99938a2e3daaa513b3
4
+ data.tar.gz: bbe7312fac26677a09e79f9b4d339b3e3ec32488
5
5
  SHA512:
6
- metadata.gz: 1805f7ef0d69d9c5f7053070b8fa2095f8337c70608a9be807d36c1641484d5f2dc049c40721d8169c6c0edb72e07baac993db207a9a7bfe52d1158bb7adb4bd
7
- data.tar.gz: 7d8ac8da2e1982aa8cdeef86323fe2fd51b7fcf3c1ec6fe724d83f44eb17da4c8486c6aa9b5812787ce542cd42e42bdc833045bd5c980314746cf30ce1882a98
6
+ metadata.gz: 0376c59de77ac42e349501064416eb9187e60459ae4a637251edf750f4b18bdfd27c20f8a23433fb3e7e219a13c7beb1047ad53b90a05c9c21a6914a6ff16b95
7
+ data.tar.gz: f573b8de76eeb45cafb1b16456e4d6036c1d5fba4667055a3977eccf2b935e456469ee27263f93c6e8546e08deb038e6c9b33fe3c0dde9eb370e46010175934c
@@ -1,5 +1,9 @@
1
1
  # ChangeLog
2
2
 
3
+ ## Version 0.2.1.2
4
+
5
+ - `Arachni::Reactor` dependency update.
6
+
3
7
  ## Version 0.2.1.1
4
8
 
5
9
  - `Arachni::Reactor` dependency update.
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  <table>
4
4
  <tr>
5
5
  <th>Version</th>
6
- <td>0.2.1.1</td>
6
+ <td>0.2.1.2</td>
7
7
  </tr>
8
8
  <tr>
9
9
  <th>Github page</th>
@@ -23,7 +23,7 @@
23
23
  </tr>
24
24
  <tr>
25
25
  <th>Copyright</th>
26
- <td>2011-2014</td>
26
+ <td>2011-2015</td>
27
27
  </tr>
28
28
  <tr>
29
29
  <th>License</th>
@@ -14,7 +14,7 @@ class Client
14
14
  #
15
15
  # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>
16
16
  class Handler < Reactor::Connection
17
- include Protocol
17
+ include Arachni::RPC::Protocol
18
18
 
19
19
  # Default amount of tries for failed requests.
20
20
  DEFAULT_TRIES = 9
@@ -14,7 +14,8 @@ class Server
14
14
  #
15
15
  # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>
16
16
  class Handler < Reactor::Connection
17
- include Protocol
17
+ include Reactor::Connection::PeerInfo
18
+ include Arachni::RPC::Protocol
18
19
 
19
20
  # @return [Request]
20
21
  # Working RPC request.
@@ -9,7 +9,7 @@
9
9
  module Arachni
10
10
  module RPC
11
11
 
12
- VERSION = '0.2.1.1'
12
+ VERSION = '0.2.1.2'
13
13
 
14
14
  end
15
15
  end
@@ -390,7 +390,6 @@ describe Arachni::RPC::Client do
390
390
  end
391
391
 
392
392
  response.should be_rpc_connection_error
393
- response.should be_rpc_ssl_error
394
393
  end
395
394
  end
396
395
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arachni-rpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1.1
4
+ version: 0.2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tasos Laskos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-05 00:00:00.000000000 Z
11
+ date: 2015-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: arachni-reactor
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.1.0.beta5
19
+ version: 0.1.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.1.0.beta5
26
+ version: 0.1.0
27
27
  description: |2
28
28
  Arachni::RPC is a simple and lightweight Remote Procedure Call protocol
29
29
  used to provide the basis for Arachni's distributed infrastructure.
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
90
  version: '0'
91
91
  requirements: []
92
92
  rubyforge_project:
93
- rubygems_version: 2.2.2
93
+ rubygems_version: 2.4.5
94
94
  signing_key:
95
95
  specification_version: 4
96
96
  summary: The RPC protocol of the Arachni Framework.
@@ -114,4 +114,3 @@ test_files:
114
114
  - spec/arachni/rpc/response_spec.rb
115
115
  - spec/arachni/rpc/exceptions_spec.rb
116
116
  - spec/arachni/rpc/proxy_spec.rb
117
- has_rdoc: