Sha256: 6599f9c71d1cdb3318ff851a3bc6284224452b61c6f0f6747df07a057489295f

Contents?: true

Size: 1.13 KB

Versions: 4

Compression:

Stored size: 1.13 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "devenv_build"
  spec.version       = DevenvBuild::VERSION
  spec.authors       = ["Francisco Soto"]
  spec.email         = ["ebobby@gmail.com"]

  spec.summary       = %q{Development environment builder based on Vagrant and VirtualBox.}
  spec.description   = %q{Simple tool to generate development environments based on Vagrant and VirtualBox.

You can includes a mix and match of programming languages, databases, frameworks or tools. Just point it to a directory and say what you need and you'll get your devenv. No more copying Vagrantfile and provisioning scripts around.}
  spec.homepage      = "http://github.com/ebobby/devenv_build"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.executables   = %w(devenv_build)
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.9"
  spec.add_development_dependency "rake", "~> 10.0"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
devenv_build-1.1.1 devenv_build.gemspec
devenv_build-1.1.0 devenv_build.gemspec
devenv_build-1.0.2 devenv_build.gemspec
devenv_build-1.0.1 devenv_build.gemspec