-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvagrant-orbstack.gemspec
More file actions
31 lines (25 loc) · 1.37 KB
/
vagrant-orbstack.gemspec
File metadata and controls
31 lines (25 loc) · 1.37 KB
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
27
28
29
30
31
# frozen_string_literal: true
require_relative 'lib/vagrant-orbstack/version'
Gem::Specification.new do |spec|
spec.name = 'vagrant-orbstack'
spec.version = VagrantPlugins::OrbStack::VERSION
spec.authors = ['Spiral House']
spec.email = ['opensource@spiralhouse.io']
spec.summary = 'Vagrant provider for OrbStack'
spec.description = 'Enables OrbStack as a Vagrant provider for managing Linux development environments on macOS'
spec.homepage = 'https://github.com/spiralhouse/vagrant-orbstack-provider'
spec.license = 'MIT'
spec.metadata = {
'homepage_uri' => 'https://github.com/spiralhouse/vagrant-orbstack-provider',
'source_code_uri' => 'https://github.com/spiralhouse/vagrant-orbstack-provider',
'bug_tracker_uri' => 'https://github.com/spiralhouse/vagrant-orbstack-provider/issues',
'changelog_uri' => 'https://github.com/spiralhouse/vagrant-orbstack-provider/blob/main/CHANGELOG.md',
'documentation_uri' => 'https://github.com/spiralhouse/vagrant-orbstack-provider',
'allowed_push_host' => 'https://rubygems.org'
}
spec.required_ruby_version = '>= 3.2.0'
spec.files = Dir['lib/**/*.rb', 'locales/**/*.yml'] + ['README.md', 'CHANGELOG.md', 'LICENSE']
spec.require_paths = ['lib']
# Runtime dependencies - none beyond Vagrant itself
# Vagrant is provided by the host installation
end