Navigation Menu

Skip to content

Commit

Permalink
Put Serf related implementations under a directory
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Jan 6, 2015
1 parent 996f464 commit de38079
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions lib/droonga/serf.rb
Expand Up @@ -19,9 +19,9 @@
require "droonga/loggable"
require "droonga/catalog_loader"
require "droonga/node_metadata"
require "droonga/serf_downloader"
require "droonga/serf_agent"
require "droonga/serf_command"
require "droonga/serf/downloader"
require "droonga/serf/agent"
require "droonga/serf/command"
require "droonga/line_buffer"
require "droonga/safe_file_writer"
require "droonga/service_installation"
Expand Down Expand Up @@ -165,7 +165,7 @@ def ensure_serf
serf_path = self.class.path
@serf = serf_path.to_s
return if serf_path.executable?
downloader = SerfDownloader.new(serf_path)
downloader = Downloader.new(serf_path)
downloader.download
end

Expand Down
File renamed without changes.
File renamed without changes.
Expand Up @@ -24,7 +24,7 @@
require "droonga/loggable"

module Droonga
class SerfDownloader
class Serf::Downloader
include Loggable

class DownloadFailed < StandardError
Expand Down

0 comments on commit de38079

Please sign in to comment.