Sha256: 97fd41f9fa85cd78fb48a7aecb324ab8452d08eeca0acda3977f783cc17c304e
Contents?: true
Size: 1.19 KB
Versions: 4
Compression:
Stored size: 1.19 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'vagrant-librarian-puppet-plugin/version' Gem::Specification.new do |spec| spec.name = "vagrant-librarian-puppet-plugin" spec.version = VagrantPlugins::LibrarianPuppet::VERSION spec.authors = ["Michael Hahn"] spec.email = ["mwhahn@gmail.com"] spec.description = %q{A Vagrant plugin to install Puppet modules using Librarian-Puppet.} spec.summary = %q{A Vagrant plugin to install Puppet modules using Librarian-Puppet.} # XXX update this url spec.homepage = "https://github.com/mhahn/vagrant-librarian-puppet-plugin" 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_runtime_dependency "librarian-puppet" spec.add_runtime_dependency "librarian" spec.add_runtime_dependency "puppet" spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" end
Version data entries
4 entries across 4 versions & 1 rubygems