-
Notifications
You must be signed in to change notification settings - Fork 1
/
sensu-plugins-time-to-live.gemspec
45 lines (39 loc) · 1.85 KB
/
sensu-plugins-time-to-live.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
36
37
38
39
40
41
42
43
44
45
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'date'
if RUBY_VERSION < '2.0.0'
require 'sensu-plugins-time-to-live'
else
require_relative 'lib/sensu-plugins-time-to-live'
end
pvt_key = '~/.ssh/gem-private_key.pem'
Gem::Specification.new do |s|
s.name = 'sensu-plugins-time-to-live'
s.version = SensuPluginsTimeToLive::VERSION
s.authors = ['Sensu Plugins and contributors']
s.email = '<[email protected]>'
s.homepage = 'https://github.com/sensu-plugins/sensu-plugins-time-to-live'
s.summary = ''
s.description = ''
s.license = 'MIT'
s.date = Date.today.to_s
s.files = Dir.glob('{bin,lib}/**/*') + %w(LICENSE README.md CHANGELOG.md)
s.executables = Dir.glob('bin/**/*').map { |file| File.basename(file) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.cert_chain = ['certs/sensu-plugins.pem']
s.signing_key = File.expand_path(pvt_key) if $PROGRAM_NAME =~ /gem\z/
s.platform = Gem::Platform::RUBY
s.post_install_message = 'You can use the embedded Ruby by setting EMBEDDED_RUBY=true in /etc/default/sensu'
s.required_ruby_version = '>= 1.9.3'
s.add_runtime_dependency 'sensu-plugin'
s.add_development_dependency 'codeclimate-test-reporter'
s.add_development_dependency 'rubocop', '~> 0.17.0'
s.add_development_dependency 'rspec', '~> 3.1'
s.add_development_dependency 'bundler', '~> 1.7'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'github-markup'
s.add_development_dependency 'redcarpet'
s.add_development_dependency 'yard'
s.add_development_dependency 'pry'
end