forked from chef/omnibus-ctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omnibus-ctl.gemspec
27 lines (22 loc) · 955 Bytes
/
omnibus-ctl.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
$:.push File.expand_path("lib", __dir__)
require "omnibus-ctl/version"
Gem::Specification.new do |s|
s.name = "omnibus-ctl"
s.version = Omnibus::Ctl::VERSION
s.authors = ["Chef Software, Inc."]
s.email = ["[email protected]"]
s.licenses = ["Apache-2.0"]
s.homepage = "http://github.com/chef/omnibus-ctl"
s.summary = %q{Provides command line control for omnibus packages}
s.description = %q{Provides command line control for omnibus pakcages, rarely used as a gem}
s.required_ruby_version = ">= 2.6"
s.add_dependency "chef-utils", ">= 16.5.54" # for ChefUtils::Dist constants
s.add_development_dependency "chefstyle", "2.2.0"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 3.2"
s.add_development_dependency "rspec_junit_formatter"
s.bindir = "bin"
s.executables = "omnibus-ctl"
s.require_path = "lib"
s.files = %w{LICENSE} + Dir.glob("lib/**/*")
end