-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvagrant-shell.gemspec
More file actions
20 lines (17 loc) · 863 Bytes
/
vagrant-shell.gemspec
File metadata and controls
20 lines (17 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$:.unshift File.expand_path("../lib", __FILE__)
require "vagrant-shell/version"
Gem::Specification.new do |s|
s.name = "vagrant-shell"
s.version = VagrantPlugins::Shell::VERSION
s.platform = Gem::Platform::RUBY
s.authors = [ "Tom Bombadil", "Mitchell Hashimoto" ]
s.email = [ "amanibhavam@destructuring.org", "mitchell@hashicorp.com" ]
s.homepage = "http://destructuring.org/vagrant-shell"
s.summary = "Enables Vagrant to manage machines using shell scripts"
s.description = "Enables Vagrant to manage machines using shell scripts"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "vagrant-shell"
s.files = Dir["lib/**/*"] + Dir["locales/**/*"] + Dir["libexec/**/*"]
s.files += %w(CHANGELOG.md LICENSE README.md VERSION )
s.require_path = 'lib'
end