about summary refs log tree commit homepage
path: root/lib/rainbows/rev
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rainbows/rev')
-rw-r--r--lib/rainbows/rev/client.rb4
-rw-r--r--lib/rainbows/rev/core.rb2
-rw-r--r--lib/rainbows/rev/server.rb2
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/rainbows/rev/client.rb b/lib/rainbows/rev/client.rb
index f35ef68..00df4d3 100644
--- a/lib/rainbows/rev/client.rb
+++ b/lib/rainbows/rev/client.rb
@@ -1,6 +1,6 @@
 # -*- encoding: binary -*-
 # :enddoc:
-class Rainbows::Rev::Client < ::Rev::IO
+class Rainbows::Rev::Client < Rev::IO
   include Rainbows::EvCore
   G = Rainbows::G
   SF = Rainbows::StreamFile
@@ -25,7 +25,7 @@ class Rainbows::Rev::Client < ::Rev::IO
     close if @deferred.nil? && @_write_buffer.empty?
   end
 
-  # override the ::Rev::IO#write method try to write directly to the
+  # override the Rev::IO#write method try to write directly to the
   # kernel socket buffers to avoid an extra userspace copy if
   # possible.
   def write(buf)
diff --git a/lib/rainbows/rev/core.rb b/lib/rainbows/rev/core.rb
index 5dc4ebe..8b3ffa8 100644
--- a/lib/rainbows/rev/core.rb
+++ b/lib/rainbows/rev/core.rb
@@ -12,7 +12,7 @@ module Rainbows::Rev::Core
     Rainbows::Rev::Client.__send__(:include, Rainbows::Rev::Sendfile)
     init_worker_process(worker)
     mod = Rainbows.const_get(@use)
-    rloop = Rainbows::Rev::Server.const_set(:LOOP, ::Rev::Loop.default)
+    rloop = Rainbows::Rev::Server.const_set(:LOOP, Rev::Loop.default)
     Rainbows::Rev::Client.const_set(:LOOP, rloop)
     Rainbows::Rev::Server.const_set(:MAX, @worker_connections)
     Rainbows::Rev::Server.const_set(:CL, mod.const_get(:Client))
diff --git a/lib/rainbows/rev/server.rb b/lib/rainbows/rev/server.rb
index 7363b5c..b75e593 100644
--- a/lib/rainbows/rev/server.rb
+++ b/lib/rainbows/rev/server.rb
@@ -1,6 +1,6 @@
 # -*- encoding: binary -*-
 # :enddoc:
-class Rainbows::Rev::Server < ::Rev::IO
+class Rainbows::Rev::Server < Rev::IO
   CONN = Rainbows::Rev::CONN
   # CL and MAX will be defined in the corresponding worker loop