diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..fa75df1 --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source 'https://rubygems.org' + +gemspec diff --git a/README.md b/README.md index c60db49..991b520 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-elasticsearch/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-elasticsearch) [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-elasticsearch/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-elasticsearch) [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-elasticsearch.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-elasticsearch) - +## Functionality ## Functionality ## Files @@ -43,7 +43,7 @@ Using the Sensu **sensu_gem** LWRP ``` sensu_gem 'sensu-plugins-elasticsearch' do options('--prerelease') - version '0.0.1.alpha.4' + version '0.0.1.alpha.1' end ``` @@ -51,14 +51,8 @@ Using the Chef **gem_package** resource ``` gem_package 'sensu-plugins-elasticsearch' do options('--prerelease') - version '0.0.1.alpha.4' + version '0.0.1.alpha.1' end ``` ## Notes - -[1]:[https://travis-ci.org/sensu-plugins/sensu-plugins-elasticsearch] -[2]:[http://badge.fury.io/rb/sensu-plugins-elasticsearch] -[3]:[https://codeclimate.com/github/sensu-plugins/sensu-plugins-elasticsearch] -[4]:[https://codeclimate.com/github/sensu-plugins/sensu-plugins-elasticsearch] -[5]:[https://gemnasium.com/sensu-plugins/sensu-plugins-elasticsearch] diff --git a/sensu-plugins-elasticsearch.gemspec b/sensu-plugins-elasticsearch.gemspec index f4125ed..5ee2329 100644 --- a/sensu-plugins-elasticsearch.gemspec +++ b/sensu-plugins-elasticsearch.gemspec @@ -18,8 +18,8 @@ Gem::Specification.new do |s| s.authors = ["Yieldbot, Inc. and contributors"] s.email = '' s.homepage = 'https://github.com/sensu-plugins/sensu-plugins-elasticsearch' - s.summary = '' - s.description = '' + s.summary = 'Sensu Plugins Elasticsearch checks' + s.description = 'Sensu Plugins Elasticsearch checks' s.license = 'MIT' s.date = Date.today.to_s s.files = Dir.glob('{bin,lib}/**/*') + %w(LICENSE README.md CHANGELOG.md) @@ -28,16 +28,16 @@ Gem::Specification.new do |s| 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 = ruby + s.platform = Gem::Platform::RUBY s.required_ruby_version = '>= 1.9.3' 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' + 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