Skip to content

Commit

Permalink
update repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Jones committed Mar 5, 2016
1 parent 785fb48 commit e40f65a
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 22 deletions.
32 changes: 23 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,33 @@
language: ruby
cache:
- bundler
- bundler
install:
- bundle install
- bundle install
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 1.9.3
- 2.0
- 2.1
- 2.2
notifications:
email:
recipients:
- [email protected]
- [email protected]
on_success: change
on_failure: always

script:
- 'bundle exec rake default'
- bundle exec rake default
- gem build sensu-plugins-uchiwa.gemspec
- gem install sensu-plugins-uchiwa-*.gem
deploy:
provider: rubygems
api_key:
secure: KYhzerrRHBDjL4qkgdM2wSnMh6mueQfTXJGETF89Py2ld3OPGAkVR4erO96Lf9+Ws3XuXffnWLq5OdE4Exm9Dr3I0PRyJzxXcnyQ37tNLSqhBYqFa0bSgx3Zsfc5uBdRaPKf6yBeZyUk529JhaQGsu0CDWqdIM1/UdBYqFxBdUQ=
gem: sensu-plugins-uchiwa
on:
ags: true
all_branches: true
rvm: 1.9.3
rvm: 2.0
rvm: 2.1
rvm: 2.2
repo: sensu-plugins/sensu-plugins-uchiwa
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
- updated sensu-plugin gem to 1.2.0

## [0.0.2] - 2015-06-03

### Fixed
- added binstubs

### Changed
- removed cruft from /lib

## 0.0.1 - 2015-04-30

### Added
- initial release

[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-iis/compare/0.0.3...HEAD
[0.0.3]: https://github.com/sensu-plugins/sensu-plugins-iis/compare/0.0.2...0.0.3
[0.0.2]: https://github.com/sensu-plugins/sensu-plugins-iis/compare/0.0.1...0.0.2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-uchiwa/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-uchiwa)
[![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-uchiwa/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-uchiwa)
[![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-uchiwa.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-uchiwa)
[ ![Codeship Status for sensu-plugins/sensu-plugins-uchiwa](https://codeship.com/projects/a796ae00-e218-0132-d769-3642858bbef8/status?branch=master)](https://codeship.com/projects/81399)


## Functionality

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ end

desc 'Test for binstubs'
task :check_binstubs do
bin_list = Gem::Specification.load('sensu-plugins-ansible.gemspec').executables
bin_list = Gem::Specification.load('sensu-plugins-uchiwa.gemspec').executables
bin_list.each do |b|
`which #{ b }`
unless $CHILD_STATUS.success?
Expand Down
16 changes: 7 additions & 9 deletions sensu-plugins-uchiwa.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ else
require_relative 'lib/sensu-plugins-uchiwa'
end

#pvt_key = '~/.ssh/gem-private_key.pem'

Gem::Specification.new do |s|
s.authors = ['Sensu-Plugins and contributors']
#s.cert_chain = ['certs/sensu-plugins.pem']

s.date = Date.today.to_s
s.description = 'Sensu plugins for uchiwa'
s.email = '<[email protected]>'
Expand All @@ -32,20 +30,20 @@ Gem::Specification.new do |s|
s.post_install_message = 'You can use the embedded Ruby by setting EMBEDDED_RUBY=true in /etc/default/sensu'
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 uchiwa'
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.version = SensuPluginsUchiwa::Version::VER_STRING

s.add_runtime_dependency 'sensu-plugin', '~> 1.2'

s.add_development_dependency 'codeclimate-test-reporter', '~> 0.4'
s.add_development_dependency 'rubocop', '~> 0.37'
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 'codeclimate-test-reporter', '~> 0.4'
s.add_development_dependency 'github-markup', '~> 1.3'
s.add_development_dependency 'pry', '~> 0.10'
s.add_development_dependency 'rake', '~> 10.5'
s.add_development_dependency 'redcarpet', '~> 3.2'
s.add_development_dependency 'rubocop', '~> 0.37'
s.add_development_dependency 'rspec', '~> 3.4'
s.add_development_dependency 'yard', '~> 0.8'
s.add_development_dependency 'pry', '~> 0.10'
end

0 comments on commit e40f65a

Please sign in to comment.