-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathknife-google.gemspec
More file actions
23 lines (21 loc) · 1 KB
/
knife-google.gemspec
File metadata and controls
23 lines (21 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("lib", __dir__)
require "knife-google/version"
Gem::Specification.new do |s|
s.name = "knife-google"
s.version = Knife::Google::VERSION
s.authors = ["Chiraq Jog", "Ranjib Dey", "James Tucker", "Paul Rossman", "Eric Johnson", "Chef Partner Engineering"]
s.license = "Apache-2.0"
s.email = ["paulrossman@google.com", "partnereng@chef.io"]
s.summary = "Google Compute Engine Support for Chef's Knife Command"
s.description = s.summary
s.homepage = "https://github.com/chef/knife-google"
s.files = %w{LICENSE} + Dir.glob("lib/**/*")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.required_ruby_version = ">= 3.1"
s.add_dependency "knife", ">= 18.0"
s.add_dependency "knife-cloud", ">= 4.0.0"
s.add_dependency "google-api-client", ">= 0.23.9", "<= 0.53.0" # each version introduces breaking changes which we need to validate
s.add_dependency "gcewinpass", "~> 1.1"
s.add_dependency "syslog", "~> 0.3"
end