-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsensu-plugins-chef-automate.gemspec
35 lines (28 loc) · 1.23 KB
/
sensu-plugins-chef-automate.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
32
33
34
35
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sensu-plugins-chef-automate/version'
Gem::Specification.new do |s|
s.name = 'sensu-plugins-chef-automate'
s.version = SensuPluginsChefAutomate::VERSION
s.authors = ['Chef Operations']
s.email = ['ops@chef.io']
s.summary = 'Sensu Plugins for Chef Automate'
s.description = 'Checks that are specific to the Chef Automate product'
s.homepage = 'https://github.com/chef/sensu-plugins-chef-automate'
s.license = 'MIT'
s.files = Dir.glob('{bin,lib}/**/*') + %w[README.md]
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|s|features)/})
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.1.0'
s.add_dependency 'rest-client', '~> 2.0.2'
s.add_dependency 'sensu-plugin', '~> 2.0.1'
s.add_development_dependency 'github-markup', '~> 1.3'
s.add_development_dependency 'pry'
s.add_development_dependency 'pry-coolline'
s.add_development_dependency 'rake'
s.add_development_dependency 'redcarpet'
s.add_development_dependency 'rspec', '~> 3.4'
s.add_development_dependency 'rubocop', '~> 0.49.0'
s.add_development_dependency 'yard', '~> 0.9.11'
end