-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
vagrant-bindfs.gemspec
43 lines (34 loc) · 1.69 KB
/
vagrant-bindfs.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vagrant-bindfs/version'
Gem::Specification.new do |spec|
spec.name = 'vagrant-bindfs'
spec.version = VagrantBindfs::VERSION
spec.licenses = ['MIT']
spec.authors = ['Gaël-Ian Havard', 'Igor Serebryany', 'Thomas Boerger']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'A Vagrant plugin to automate bindfs mount in the VM'
spec.description = <<-DESC.gsub(/\s+/, ' ')
A Vagrant plugin to automate bindfs mount in the VM.
Allows you to change owner, group and permissions on files and work around NFS share permissions issues.
DESC
spec.homepage = 'https://github.com/gael-ian/vagrant-bindfs'
raise 'RubyGems 2.0 or newer is required.' unless spec.respond_to?(:metadata)
spec.metadata = {
'allowed_push_host' => 'https://rubygems.org',
'rubygems_mfa_required' => 'true',
'bug_tracker_uri' => 'https://github.com/gael-ian/vagrant-bindfs/issues',
'changelog_uri' => 'https://github.com/gael-ian/vagrant-bindfs/blob/main/CHANGELOG.md',
'homepage_uri' => 'https://github.com/gael-ian/vagrant-bindfs',
'source_code_uri' => 'https://github.com/gael-ian/vagrant-bindfs',
'funding_uri' => 'https://opencollective.com/notus-sh'
}
spec.require_paths = ['lib']
excluded_dirs = %r{^(.github|spec)/}
excluded_files = %w[.gitignore .rspec .rubocop.yml Gemfile Gemfile.lock Rakefile]
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(excluded_dirs) || excluded_files.include?(f)
end
spec.required_ruby_version = '>= 3.0', '< 3.4'
end