forked from bacongravy/macinbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacinbox.gemspec
31 lines (24 loc) · 952 Bytes
/
macinbox.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "macinbox/version"
Gem::Specification.new do |s|
s.name = "macinbox"
s.version = Macinbox::VERSION
s.authors = ["David Kramer"]
s.email = ["[email protected]"]
s.summary = "Puts macOS in a Vagrant box"
s.homepage = "https://github.com/bacongravy/macinbox"
s.license = "MIT"
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "bundler", "~> 1.16"
s.add_development_dependency "rake", "~> 10.0"
s.required_ruby_version = '~> 2.3'
s.requirements << "macOS High Sierra"
s.requirements << "macOS High Sierra installer app"
s.requirements << "Vagrant"
end