vagrant/plugins/commands/gem/plugin.rb

18 lines
392 B
Ruby

require "vagrant"
module VagrantPlugins
module CommandGem
autoload :Command, File.expand_path("../command", __FILE__)
class Plugin < Vagrant.plugin("1")
name "gem command"
description <<-DESC
Provides an interface to RubyGems that can be used to install
RubyGems into the Vagrant environment.
DESC
command("gem") { Command }
end
end
end