Skip to content

Commit c4a4b01

Browse files
author
Matt Jones
committed
update repo
1 parent f6438f2 commit c4a4b01

6 files changed

Lines changed: 34 additions & 31 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+

.travis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
language: ruby
22
cache:
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
74
install:
85
- bundle install
96
rvm:
@@ -24,13 +21,13 @@ script:
2421
deploy:
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

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
33

44
This 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

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ end
2929

3030
desc 'Make all plugins executable'
3131
task :make_bin_executable do
32-
`chmod -R +x bin/*.rb`
32+
`chmod -R +x bin/*`
3333
end
3434

3535
desc 'Test for binstubs'
3636
task :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?

certs/sensu-plugins.pem

Lines changed: 0 additions & 22 deletions
This file was deleted.

sensu-plugins-slack.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pvt_key = 'certs/gem-private_key.pem'
1313

1414
Gem::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>'

0 commit comments

Comments
 (0)