Skip to content

Commit

Permalink
add metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Jones committed Apr 2, 2015
1 parent 6f615e2 commit 333bc03
Showing 1 changed file with 25 additions and 21 deletions.
46 changes: 25 additions & 21 deletions sensu-plugins-process-checks.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,36 +11,40 @@ end
pvt_key = '~/.ssh/gem-private_key.pem'

Gem::Specification.new do |s|
s.name = 'sensu-plugins-process-checks'
s.version = SensuPluginsProcessChecks::VERSION
s.summary = 'Sensu process checks'
s.description = 'Sensu process checks'
s.authors = ["Yieldbot, Inc. and contributors"]
s.authors = ['Yieldbot, Inc. and contributors']
s.cert_chain = ['certs/sensu-plugins.pem']
s.date = Date.today.to_s
s.description = 'Sensu plugins for checking running processes'
s.email = '<[email protected]>'
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.files = Dir.glob('{bin,lib}/**/*') + %w(LICENSE README.md CHANGELOG.md)
s.homepage = 'https://github.com/sensu-plugins/sensu-plugins-process-checks'
s.license = 'MIT'
s.date = Date.today.to_s
s.files = Dir.glob('{bin,lib}/**/*') + %w(LICENSE README.md CHANGELOG.md)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
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.metadata = { 'maintainer' => '@rmc3',
'development_status' => 'active',
'production_status' => 'unstable - testing recommended'
}
s.name = 'sensu-plugins-sensu-plugins-process-checks'
s.platform = Gem::Platform::RUBY
s.require_paths = ['lib']
s.required_ruby_version = '>= 1.9.3'
s.signing_key = File.expand_path(pvt_key) if $PROGRAM_NAME =~ /gem\z/
s.summary = 'Sensu plugins for checking running processes'
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.version = SensuPluginsProcessChecks::VERSION

s.add_runtime_dependency 'english', '0.6.3'
s.add_runtime_dependency 'sensu-plugin', '1.1.0'
s.add_runtime_dependency 'json', '1.8.2'
s.add_runtime_dependency 'sys-proctable', '0.9.6'

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', '~> 1.3'
s.add_development_dependency 'redcarpet', '~> 3.2'
s.add_development_dependency 'yard', '~> 0.8'
s.add_development_dependency 'pry', '~> 0.10'
s.add_development_dependency 'codeclimate-test-reporter', '~> 0.4'
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', '~> 1.3'
s.add_development_dependency 'redcarpet', '~> 3.2'
s.add_development_dependency 'yard', '~> 0.8'
s.add_development_dependency 'pry', '~> 0.10'
end

0 comments on commit 333bc03

Please sign in to comment.