-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding a contributing file; adding supported OS and chef version to m…
…etadata; fixing some typos
- Loading branch information
1 parent
2c9cd72
commit 3c2d3bd
Showing
3 changed files
with
24 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Contributing | ||
============ | ||
|
||
Simply make your change and open a pull request by: | ||
|
||
1. Fork [**this project**][fork-url]; | ||
2. Create your feature branch (`git checkout -b my-new-feature`); | ||
3. Commit your changes (`git commit -am 'adding some feature'`); | ||
4. Push to the branch (`git push origin my-new-feature`); | ||
5. Create a new [**Pull Request**][pr-url]; | ||
|
||
[fork-url]: https://github.com/amalucelli/chef-cloudwatchlogs#fork-destination-box | ||
[pr-url]: https://github.com/amalucelli/chef-cloudwatchlogs/compare |
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 |
---|---|---|
@@ -1,9 +1,17 @@ | ||
name 'aws-cloudwatchlogs' | ||
maintainer 'Alexandre Guimarães Malucelli' | ||
maintainer_email '[email protected]' | ||
license 'Apache 2.0' | ||
description 'Installs/Configures AWS CloudWatch Logs Agent' | ||
license 'Apache-2.0' | ||
description 'Install and Configure AWS CloudWatch Logs Agent' | ||
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) | ||
version '1.1.6' | ||
source_url 'https://github.com/amalucelli/chef-cloudwatchlogs' if respond_to? :source_url | ||
issues_url 'https://github.com/amalucelli/chef-cloudwatchlogs/issues' if respond_to? :issues_url | ||
|
||
%w( | ||
ubuntu | ||
).each do |os| | ||
supports os | ||
end | ||
|
||
chef_version '>= 12.1' |