Rename docker_client and docker_installer

We can rename those classes and remove the docker_ prefix as they
already have a module namespace.
This commit is contained in:
Arthur Neves 2013-12-12 14:54:20 -05:00
parent 152c6b92ac
commit c57073da7b
3 changed files with 6 additions and 7 deletions

View File

@ -2,7 +2,7 @@ require 'digest/sha1'
module VagrantPlugins
module Docker
class DockerClient
class Client
def initialize(machine)
@machine = machine
end

View File

@ -1,6 +1,6 @@
module VagrantPlugins
module Docker
class DockerInstaller
class Installer
def initialize(machine, version)
@machine = machine
@version = version

View File

@ -1,5 +1,5 @@
require_relative "docker_client"
require_relative "docker_installer"
require_relative "client"
require_relative "installer"
module VagrantPlugins
module Docker
@ -13,9 +13,8 @@ module VagrantPlugins
def initialize(machine, config, installer = nil, client = nil)
super(machine, config)
# TODO: Rename to installer / client (drop docker suffix)
@installer = installer || DockerInstaller.new(@machine, config.version)
@client = client || DockerClient.new(@machine)
@installer = installer || Installer.new(@machine, config.version)
@client = client || Client.new(@machine)
end
def provision