-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matt Jones
committed
Mar 5, 2016
1 parent
785fb48
commit e40f65a
Showing
5 changed files
with
35 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]>' | ||
|
@@ -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 |