nut 0.1.4 → 0.1.5

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: 1a5c8b328a3531976274b1bfc8782285ba54d850
4
- data.tar.gz: 98fea5ff99ec69cbb266312b7c9d7c890ce85923
3
+ metadata.gz: c85e274499874adb9027b42e92d38fede99bc8d5
4
+ data.tar.gz: 3e3c8bf2e8e2528d29c170ae8dad405f465c341c
5
5
  SHA512:
6
- metadata.gz: 2cc4f9ab5d2a627edefb80f116038398eb391f7b2fa2a8db39015972a18b7f074a2e5f7d01198ce4115253c5c2f86c7b6cf508aee42572f5d510b35d3ebcd2ea
7
- data.tar.gz: 5515258bb3d17b444df2f246f0069da228432864c1ec32aa3b65645530bb747cbe1c7dd4b9705ef6a9d4cb215eb076d7532c17a410917d0b1e595681fce5a4dc
6
+ metadata.gz: 64f6128cd19cf0262f8f339b5a521fbbb139e3c857ffaee8842259ccd6436fbbb11e44cd1e430ee16d3296a3b1fc83112c84d2e52922f7f87a7eb95772f63188
7
+ data.tar.gz: 7608440402fd71ce1b7517e07640ea58a17b6fdb630d4c2973424654939ad552b1fe301f4b493965e3a5dd5908ffb75fbde3a223eb1c72f975c25ed6906fc6c5
data/lib/nut/handler.rb CHANGED
@@ -35,14 +35,14 @@ module Nut
35
35
  end
36
36
 
37
37
  # On Drop
38
- # RxIO Service Interface Callback - Triggered each time a Client disconnects.
38
+ # @note RxIO Service Interface Callback - Triggered each time a Client disconnects.
39
39
  # @param [Hash] client An RxIO Client Hash
40
40
  def self.on_drop client
41
41
  # NoOp
42
42
  end
43
43
 
44
44
  # Handle Message
45
- # RxIO Service Interface Callback - Triggered each time a message is received from a Client.
45
+ # RxIO Service Interface Callback - Triggered each time a message is received from a Client.
46
46
  # @param [Hash] client An RxIO Client Hash
47
47
  # @param [String] msg The message received from the Client
48
48
  def self.handle_msg client, msg
@@ -52,7 +52,7 @@ module Nut
52
52
  end
53
53
 
54
54
  # Sub-Process Input
55
- # RxIO Service Interface Callback - Triggered each time a chunk of data is received from a Client.
55
+ # # RxIO Service Interface Callback - Triggered each time a chunk of data is received from a Client.
56
56
  # Some Content-Length-based Requests may not end with a CRLF - this pulls in any left-over data directly from the RxIO Input Buffer.
57
57
  # @param [Hash] client Client Hash
58
58
  def self.subprocess_input client
data/lib/nut/version.rb CHANGED
@@ -5,5 +5,5 @@
5
5
  module Nut
6
6
 
7
7
  # Version
8
- VERSION = '0.1.4'
8
+ VERSION = '0.1.5'
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nut
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eresse