Sha256: 8cad43aee8a1ee85bb5e838be92deadf35d68e6e08f4a5b9960681fc44dd33cd

Contents?: true

Size: 1.31 KB

Versions: 4

Compression:

Stored size: 1.31 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vagrant-shell-commander/version'

Gem::Specification.new do |spec|
  spec.name          = "vagrant-shell-commander"
  spec.version       = VagrantShellCommander::VERSION
  spec.authors       = ["Federico Gimenez Nieto"]
  spec.email         = ["federico.gimenez@gmail.com"]
  spec.description   = %q{This Vagrant plugin allows you to execute a given shell command on all the machines of your multinode environment. You can also specify the working directory to execute the command}
  spec.summary       = %q{Vagrant plugin for executing arbitrary shell commands on guest(s)}
  spec.homepage      = "https://github.com/fgimenez/vagrant-shell-commander"
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"
  spec.add_development_dependency "reek"
  spec.add_development_dependency "cane"
  spec.add_development_dependency "yard"
  spec.add_development_dependency "simplecov"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vagrant-shell-commander-0.1.4 vagrant-shell-commander.gemspec
vagrant-shell-commander-0.1.3 vagrant-shell-commander.gemspec
vagrant-shell-commander-0.1.2 vagrant-shell-commander.gemspec
vagrant-shell-commander-0.1.1 vagrant-shell-commander.gemspec