initial commit of chef-handler-mail
parents
No related branches found
No related tags found
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- LICENSE 201 additions, 0 deletionsLICENSE
- README.md 35 additions, 0 deletionsREADME.md
- chef-handler-mail.gemspec 14 additions, 0 deletionschef-handler-mail.gemspec
- lib/chef/handler/mail.erb 15 additions, 0 deletionslib/chef/handler/mail.erb
- lib/chef/handler/mail.rb 63 additions, 0 deletionslib/chef/handler/mail.rb
.gitignore
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
chef-handler-mail.gemspec
0 → 100644
Gem::Specification.new do |s| | |||
s.name = 'chef-handler-mail' | |||
s.version = '0.1' | |||
s.platform = Gem::Platform::RUBY | |||
s.summary = "Chef report handler that uses pony to send an email" | |||
s.description = s.summary | |||
s.author = "Mathieu Sauve-Frankel" | |||
s.email = "msf@kisoku.net" | |||
s.homepage = "http://github.com/kisoku/chef-handler-mail" | |||
s.require_path = 'lib' | |||
s.files = %w(LICENSE README.md) + Dir.glob("lib/**/*") | |||
s.add_runtime_dependency "pony" | |||
end | |||
lib/chef/handler/mail.erb
0 → 100644
lib/chef/handler/mail.rb
0 → 100644
Please register or sign in to comment