-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathexception_notification-rake.gemspec
More file actions
25 lines (21 loc) · 1023 Bytes
/
exception_notification-rake.gemspec
File metadata and controls
25 lines (21 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$:.push File.expand_path("../lib", __FILE__)
require 'exception_notifier/rake/version'
Gem::Specification.new do |s|
s.name = 'exception_notification-rake'
s.version = ExceptionNotifier::Rake::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Nik Haldimann']
s.email = ['nhaldimann@gmail.com']
s.homepage = 'https://github.com/nikhaldi/exception_notification-rake'
s.summary = 'Sending exception notifications upon Rake task failures'
s.description = 'An extension of the exception_notification gem to support' +
' sending mail upon failures in Rake tasks'
s.required_ruby_version = '>= 2.0'
s.add_runtime_dependency 'exception_notification', '~> 4.3'
# NB: Rake before 0.9.0 won't support the exception hook we're using
s.add_runtime_dependency 'rake', '>= 0.9.0'
s.add_development_dependency 'appraisal', '~> 2.2.0'
s.files = Dir['LICENSE.md', 'README.md', 'lib/**/*']
s.test_files = Dir['test/**/*.rb']
s.require_paths = ['lib']
end