-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathappbundler.gemspec
More file actions
25 lines (21 loc) · 1.04 KB
/
appbundler.gemspec
File metadata and controls
25 lines (21 loc) · 1.04 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
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "appbundler/version"
Gem::Specification.new do |spec|
spec.name = "appbundler"
spec.version = Appbundler::VERSION
spec.authors = ["Chef Software, Inc."]
spec.email = ["info@chef.io"]
spec.description = %q{Extracts a dependency solution from bundler's Gemfile.lock to speed gem activation}
spec.summary = spec.description
spec.homepage = "https://github.com/chef/appbundler"
spec.license = "Apache-2.0"
spec.files = Dir.glob("{bin,lib,spec}/**/*").reject { |f| File.directory?(f) } + %w{ LICENSE appbundler.gemspec Rakefile Gemfile }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.4"
spec.add_dependency "mixlib-shellout", ">= 2.0", "< 4.0"
spec.add_dependency "mixlib-cli", ">= 1.4", "< 3.0"
end