Sha256: bc917bf7e0c2ceeb274128cea3b42eee4f97d9d464618ea985319aa87d3cf0a4
Contents?: true
Size: 1.59 KB
Versions: 3
Compression:
Stored size: 1.59 KB
Contents
# frozen_string_literal: true Encoding.default_external = Encoding::UTF_8 require File.expand_path('lib/vagrant-local/version', __dir__) Gem::Specification.new do |spec| spec.name = 'vagrant-local' spec.version = VagrantPlugins::ProviderLocal::VERSION spec.authors = ['Mark Gilbert'] spec.email = ['support@prominic.net'] spec.summary = 'Vagrant provider plugin to support local provisioners' spec.description = spec.summary spec.homepage = 'https://github.com/STARTCloud/vagrant-local' spec.license = 'AGPL-3.0' spec.metadata = { 'rubygems_mfa_required' => 'true', 'bug_tracker_uri' => 'https://github.com/STARTcloud/vagrant-local/issues', 'changelog_uri' => 'https://github.com/STARTcloud/vagrant-local/blob/main/CHANGELOG.md', 'documentation_uri' => 'http://rubydoc.info/gems/vagrant-local', 'source_code_uri' => 'https://github.com/STARTCloud/vagrant-local', 'github_repo' => 'https://github.com/STARTCloud/vagrant-local' } spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'bin' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.7.0' spec.required_rubygems_version = '>= 1.3.6' spec.add_runtime_dependency 'i18n', '~> 1.0' spec.add_runtime_dependency 'iniparse', '~> 1.0' spec.add_runtime_dependency 'log4r', '~> 1.1' spec.add_runtime_dependency 'netaddr', '~> 2.0', '>= 2.0.4' spec.add_runtime_dependency 'ruby_expect', '~> 1.7', '>= 1.7.5' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vagrant-local-0.0.3 | vagrant-zones.gemspec |
vagrant-local-0.0.2 | vagrant-zones.gemspec |
vagrant-local-0.0.1 | vagrant-zones.gemspec |