-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vagrant-tart.gemspec
26 lines (21 loc) · 1.02 KB
/
vagrant-tart.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true
require_relative "lib/vagrant-tart/version"
Gem::Specification.new do |s|
s.name = "vagrant-tart"
s.version = VagrantPlugins::Tart::VERSION
s.authors = ["Laurent Etiemble"]
s.email = ["laurent.etiemble@gmail.com"]
s.summary = "Vagrant Tart provider"
s.description = "Allows Vagrant to manage Tart virtual machines."
s.homepage = "https://github.com/letiemble/vagrant-tart"
s.license = "MIT"
s.required_ruby_version = ">= 3.0.0"
s.metadata["allowed_push_host"] = "https://rubygems.org"
s.metadata["homepage_uri"] = "https://letiemble.github.io/vagrant-tart"
s.metadata["source_code_uri"] = "https://github.com/letiemble/vagrant-tart"
s.metadata["changelog_uri"] = "https://github.com/letiemble/vagrant-tart/blob/main/CHANGELOG.md"
s.metadata["rubygems_mfa_required"] = "true"
s.files = Dir.glob("{lib,locales}/**/*") + %w[LICENSE README.md]
s.executables = Dir.glob("bin/*.*").map { |f| File.basename(f) }
s.require_paths = ["lib"]
end