Module: VPM::Commands::Install

Defined in:
lib/vpm/commands/install.rb

Defined Under Namespace

Modules: GitInstall

Class Method Summary collapse

Class Method Details

.run(plugin) ⇒ Object



4
5
6
7
8
9
# File 'lib/vpm/commands/install.rb', line 4

def self.run(plugin)
  type = plugin.type
  if type == :git
    GitInstall.run(plugin)
  end
end