-
Notifications
You must be signed in to change notification settings - Fork 27
/
knife-ec-backup.gemspec
30 lines (26 loc) · 1.01 KB
/
knife-ec-backup.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
$:.unshift(File.dirname(__FILE__) + '/lib')
require 'knife_ec_backup/version'
Gem::Specification.new do |s|
s.name = "knife-ec-backup"
s.version = KnifeECBackup::VERSION
s.license = 'Apache-2.0'
s.platform = Gem::Platform::RUBY
s.extra_rdoc_files = ["README.md", "LICENSE"]
s.summary = "Backup and Restore of Enterprise Chef"
s.description = s.summary
s.author = "John Keiser"
s.email = "[email protected]"
s.homepage = "https://www.chef.io"
s.required_ruby_version = ">= 3.1"
# We need a more recent version of mixlib-cli in order to support --no- options.
# ... but, we can live with those options not working, if it means the plugin
# can be included with apps that have restrictive Gemfile.locks.
# s.add_dependency "mixlib-cli", ">= 1.2.2"
s.add_dependency "sequel", "~> 5.9"
s.add_dependency "pg"
s.add_dependency "chef", "~> 18.0"
s.add_dependency "veil"
s.add_dependency "knife-tidy"
s.require_path = 'lib'
s.files = %w(LICENSE README.md Rakefile) + Dir.glob("{lib,spec}/**/*")
end