File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## Pull Request Checklist
2+
3+ ** Is this in reference to an existing issue?**
4+
5+ #### General
6+
7+ - [ ] Update Changelog following the conventions laid out on [ Keep A Changelog] ( http://keepachangelog.com/ )
8+
9+ - [ ] Update README with any necessary configuration snippets
10+
11+ - [ ] Binstubs are created if needed
12+
13+ - [ ] RuboCop passes
14+
15+ - [ ] Existing tests pass
16+
17+ #### New Plugins
18+
19+ - [ ] Tests
20+
21+ - [ ] Add the plugin to the README
22+
23+ - [ ] Does it have a complete header as outlined [ here] ( http://sensu-plugins.io/docs/developer_guidelines.html#coding-style )
24+
25+ #### Purpose
26+
27+ #### Known Compatablity Issues
28+
Original file line number Diff line number Diff line change 11language : ruby
22cache :
33- bundler
4- before_install :
5- - openssl aes-256-cbc -K $encrypted_d1d31e51f475_key -iv $encrypted_d1d31e51f475_iv
6- -in certs/pvt_key -out certs/gem-private_key.pem -d
74install :
85- bundle install
96rvm :
@@ -24,13 +21,13 @@ script:
2421deploy :
2522 provider : rubygems
2623 api_key :
27- secure : YGx1ZNlHwWA7B29ZpUKvgPG3RIPvEun/n3ZcSJMyXd1inN2533ByEaTb3MzHe/JqSWKzJcxRUoYd6DW4aj8SeSF68dG88QN4j0FisXWJrO+df6DwbbyZLXMSCTWrNrqKYVk1lg1/GkGbQfMvrJbptJ/VELmYjsZMRgBLPcukM6I =
24+ secure : EqJH4o+MAFbzkZQB76PESuK54p2M8iyHe7aQ1iPhKdCm2oPTpU6j2ymbGl38ccmHt6vXpmVzF6CIi4V7EHNK+n+Id+5oAcJpZTt/HxratlKM48le3ycYBt7cPlZjslFNRe/Zp+dsFYqwqk4WYSCJhIekaDfQcM1Snee7Auhc1UI =
2825 gem : sensu-plugins-slack
2926 on :
3027 tags : true
31- repo : sensu-plugins/sensu-plugins-slack
3228 all_branches : true
3329 rvm : 1.9.3
3430 rvm : 2.0
3531 rvm : 2.1
3632 rvm : 2.2
33+ repo : sensu-plugins/sensu-plugins-slack
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
33
44This CHANGELOG follows the format listed at [ Keep A Changelog] ( http://keepachangelog.com/ )
55
6- ## Unreleased
6+ ## [ Unreleased]
77
88## [ 0.1.2] - 2016-02-05
99### Added
Original file line number Diff line number Diff line change 2929
3030desc 'Make all plugins executable'
3131task :make_bin_executable do
32- `chmod -R +x bin/*.rb `
32+ `chmod -R +x bin/*`
3333end
3434
3535desc 'Test for binstubs'
3636task :check_binstubs do
37- bin_list = Gem ::Specification . load ( 'sensu-plugins-slack .gemspec' ) . executables
37+ bin_list = Gem ::Specification . load ( 'sensu-plugins-ansible .gemspec' ) . executables
3838 bin_list . each do |b |
3939 `which #{ b } `
4040 unless $CHILD_STATUS. success?
Load diff This file was deleted.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ pvt_key = 'certs/gem-private_key.pem'
1313
1414Gem ::Specification . new do |s |
1515 s . authors = [ 'Sensu-Plugins and contributors' ]
16- s . cert_chain = [ 'certs/sensu-plugins.pem' ]
16+ # s.cert_chain = ['certs/sensu-plugins.pem']
1717 s . date = Date . today . to_s
1818 s . description = 'Sensu plugins for interfacing with Slack chat'
1919 s . email = '<sensu-users@googlegroups.com>'
You can’t perform that action at this time.
0 commit comments