vagrant/plugins/commands/gem/plugin.rb

19 lines
401 B
Ruby
Raw Normal View History

2012-04-19 20:59:48 +00:00
require "vagrant"
module VagrantPlugins
module CommandGem
2012-11-07 05:05:14 +00:00
class Plugin < Vagrant.plugin("2")
2012-04-19 20:59:48 +00:00
name "gem command"
description <<-DESC
Provides an interface to RubyGems that can be used to install
RubyGems into the Vagrant environment.
DESC
command("gem") do
require File.expand_path("../command", __FILE__)
Command
end
2012-04-19 20:59:48 +00:00
end
end
end