-
Notifications
You must be signed in to change notification settings - Fork 0
/
sensu-plugins-trello.gemspec
33 lines (27 loc) · 1.25 KB
/
sensu-plugins-trello.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sensu/plugins/trello/version'
Gem::Specification.new do |spec|
spec.name = 'sensu-plugins-trello'
spec.version = Sensu::Plugins::Trello::VERSION
spec.licenses = ['MIT']
spec.authors = ['Hauke Altmann', 'Stefan Walluhn']
spec.email = ['[email protected]']
spec.summary = 'Check if a Trello list contains card(s)'
spec.description = 'Used for incident management where a card represents '\
'an incident.'
spec.homepage = 'https://github.com/aboutsource/sensu-plugins-trello'
spec.require_paths = ['lib']
spec.executables = Dir.glob('bin/**/*.rb').map { |file| File.basename(file) }
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.required_ruby_version = '>= 2.7.0'
spec.add_dependency 'sensu-plugin', '~> 2.1'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.7'
spec.add_development_dependency 'rubocop', '~> 0.54'
spec.add_development_dependency 'webmock', '~> 3.3'
end