Sha256: 1235f9a30f1cdc2d7f0460e63302bcccdf7cb885543dcd7a442a91565c3f98b8
Contents?: true
Size: 1.18 KB
Versions: 3
Compression:
Stored size: 1.18 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'vagrant-alpine/version' Gem::Specification.new do |spec| spec.name = 'vagrant-alpine' spec.version = VagrantPlugins::GuestAlpine::VERSION spec.license = 'MIT' spec.authors = ['matt maier'] spec.email = ['maier@users.noreply.github.com'] spec.summary = 'Enables Vagrant to manage Alpine Linux Guests.' spec.description = <<-EOF Vagrant support for Alpine Linux Guests. Features include: Detection, Set hostname, Configure networking DHCP or static, Halt/Shutdown the guest, RSync detection and installation, NFS client installation. EOF spec.homepage = 'https://github.com/maier/vagrant-alpine' spec.add_development_dependency 'rake', '~> 10.4', '>= 10.4.2' spec.add_development_dependency 'rspec-core', '~> 2.14' spec.add_development_dependency 'rspec-expectations', '~> 2.14' spec.add_development_dependency 'rspec-mocks', '~> 2.14' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_path = 'lib' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vagrant-alpine-0.4.0 | vagrant-alpine.gemspec |
vagrant-alpine-0.3.0 | vagrant-alpine.gemspec |
vagrant-alpine-0.2.0 | vagrant-alpine.gemspec |