Navigation Menu

Skip to content

Commit

Permalink
Rename Dumper to DumpClient.
Browse files Browse the repository at this point in the history
Because there is another class named Dumper in droonga-engine itself.
  • Loading branch information
piroor committed Apr 15, 2015
1 parent 1e15c22 commit 6271e1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/drndump/command.rb
Expand Up @@ -20,7 +20,7 @@
require "cool.io"

require "drndump/version"
require "drndump/dumper"
require "drndump/dump_client"

module Drndump
class Command
Expand Down Expand Up @@ -117,7 +117,7 @@ def dumper_params
end

def dump
@dumper = Dumper.new(dumper_params)
@dumper = DumpClient.new(dumper_params)
client_options = {
:backend => :coolio,
:loop => @loop,
Expand Down
2 changes: 1 addition & 1 deletion lib/drndump/dumper.rb → lib/drndump/dump_client.rb
Expand Up @@ -18,7 +18,7 @@
require "droonga/client"

module Drndump
class Dumper
class DumpClient
attr_reader :error_message
attr_writer :on_finish

Expand Down

0 comments on commit 6271e1c

Please sign in to comment.